LT-242: Fixing HUD resizing issue

This commit is contained in:
Bruno Alves de Faria 2016-07-15 15:08:02 -03:00 committed by Erik Ziegler
parent 8564c52981
commit 1136e12eb3
2 changed files with 7 additions and 1 deletions

View File

@ -15,6 +15,7 @@ tracker # Meteor's client-side reactive programming library
es5-shim # ECMAScript 5 compatibility for older browsers.
ecmascript # Enable ECMAScript2015+ syntax in app code
design
ohif:core
insecure # Allow all DB writes from clients (for prototyping)
@ -35,7 +36,6 @@ fortawesome:fontawesome
random
reactive-var
reactive-dict
design
lesiontracker
practicalmeteor:loglevel
momentjs:moment

View File

@ -10,11 +10,17 @@ Package.onUse(function(api) {
api.use('ecmascript');
api.use('standard-app-packages');
api.use('jquery');
api.use('stylus');
api.use('underscore');
api.use('templating');
api.use('reactive-var');
api.use('natestrauser:select2@4.0.1', 'client');
// UI Styles
api.addFiles([
'ui/resizable/resizable.styl'
], 'client');
api.mainModule('main.js', 'client');
});