Browse Source

helios: simplifications

Herbert Vojčík 8 years ago
parent
commit
7e10adafac
2 changed files with 4 additions and 7 deletions
  1. 1 4
      app.js
  2. 3 3
      bootstrap.amd.json

+ 1 - 4
app.js

@@ -1,6 +1,4 @@
 define([
-	'amber/helpers', // pre-fetch, dep of amber/deploy
-	'amber/deploy', // pre-fetch, dep of amber/lang
 	'amber/lang',
     'codemirror/lib/codemirror',
     'codemirror/mode/smalltalk/smalltalk',
@@ -10,8 +8,7 @@ define([
     'css!codemirror/addon/hint/show-hint',
     'typeahead',
     'jquery-ui',
-    'bootstrap/dist/js/bootstrap',
-    'css!bootstrap/dist/css/bootstrap',
+    'bootstrap/js/bootstrap',
     './showdown',
     './all',
     'css!./resources/helios',

+ 3 - 3
bootstrap.amd.json

@@ -1,10 +1,10 @@
 {
     "paths": {
-        "bootstrap": "."
+        "bootstrap": "dist"
     },
     "shim": {
-        "bootstrap/dist/js/bootstrap": {
-            "deps": [ "jquery", "css!bootstrap/dist/css/bootstrap" ]
+        "bootstrap/js/bootstrap": {
+            "deps": [ "jquery", "css!bootstrap/css/bootstrap" ]
         }
     }
 }