Show More
@@ -6,7 +6,7 b' define([' | |||
|
6 | 6 | 'jquery', |
|
7 | 7 | 'base/js/utils', |
|
8 | 8 | 'notebook/js/tour', |
|
9 | 'components/bootstrap/js/bootstrap.min', | |
|
9 | 'bootstrap', | |
|
10 | 10 | ], function(IPython, $, utils, tour) { |
|
11 | 11 | "use strict"; |
|
12 | 12 |
@@ -12,8 +12,8 b' require([' | |||
|
12 | 12 | 'tree/js/sessionlist', |
|
13 | 13 | 'tree/js/kernellist', |
|
14 | 14 | 'auth/js/loginwidget', |
|
15 | 'components/jquery-ui/ui/minified/jquery-ui.min', | |
|
16 | 'components/bootstrap/js/bootstrap.min', | |
|
15 | 'jqueryui', | |
|
16 | 'bootstrap', | |
|
17 | 17 | ], function( |
|
18 | 18 | IPython, |
|
19 | 19 | $, |
@@ -4,7 +4,7 b'' | |||
|
4 | 4 | define([ |
|
5 | 5 | "widgets/js/widget", |
|
6 | 6 | "jquery", |
|
7 | "components/bootstrap/js/bootstrap.min", | |
|
7 | "bootstrap", | |
|
8 | 8 | ], function(widget, $){ |
|
9 | 9 | |
|
10 | 10 | var CheckboxView = widget.DOMWidgetView.extend({ |
@@ -4,7 +4,7 b'' | |||
|
4 | 4 | define([ |
|
5 | 5 | "widgets/js/widget", |
|
6 | 6 | "jquery", |
|
7 | "components/bootstrap/js/bootstrap.min", | |
|
7 | "bootstrap", | |
|
8 | 8 | ], function(widget, $){ |
|
9 | 9 | |
|
10 | 10 | var ButtonView = widget.DOMWidgetView.extend({ |
@@ -4,7 +4,7 b'' | |||
|
4 | 4 | define([ |
|
5 | 5 | "widgets/js/widget", |
|
6 | 6 | "jqueryui", |
|
7 | "components/bootstrap/js/bootstrap.min", | |
|
7 | "bootstrap", | |
|
8 | 8 | ], function(widget, $){ |
|
9 | 9 | |
|
10 | 10 | var ContainerView = widget.DOMWidgetView.extend({ |
@@ -4,7 +4,7 b'' | |||
|
4 | 4 | define([ |
|
5 | 5 | "widgets/js/widget", |
|
6 | 6 | "jqueryui", |
|
7 | "components/bootstrap/js/bootstrap.min", | |
|
7 | "bootstrap", | |
|
8 | 8 | ], function(widget, $){ |
|
9 | 9 | |
|
10 | 10 | var IntSliderView = widget.DOMWidgetView.extend({ |
@@ -5,7 +5,7 b' define([' | |||
|
5 | 5 | "widgets/js/widget", |
|
6 | 6 | "base/js/utils", |
|
7 | 7 | "jquery", |
|
8 | "components/bootstrap/js/bootstrap.min", | |
|
8 | "bootstrap", | |
|
9 | 9 | ], function(widget, utils, $){ |
|
10 | 10 | |
|
11 | 11 | var DropdownView = widget.DOMWidgetView.extend({ |
@@ -5,7 +5,7 b' define([' | |||
|
5 | 5 | "widgets/js/widget", |
|
6 | 6 | "base/js/utils", |
|
7 | 7 | "jquery", |
|
8 | "components/bootstrap/js/bootstrap.min", | |
|
8 | "bootstrap", | |
|
9 | 9 | ], function(widget, utils, $){ |
|
10 | 10 | |
|
11 | 11 | var AccordionView = widget.DOMWidgetView.extend({ |
@@ -4,7 +4,7 b'' | |||
|
4 | 4 | define([ |
|
5 | 5 | "widgets/js/widget", |
|
6 | 6 | "jquery", |
|
7 | "components/bootstrap/js/bootstrap.min", | |
|
7 | "bootstrap", | |
|
8 | 8 | ], function(widget, $){ |
|
9 | 9 | |
|
10 | 10 | var HTMLView = widget.DOMWidgetView.extend({ |
@@ -23,6 +23,7 b'' | |||
|
23 | 23 | underscore : 'components/underscore/underscore-min', |
|
24 | 24 | backbone : 'components/backbone/backbone-min', |
|
25 | 25 | jquery: 'components/jquery/jquery.min', |
|
26 | bootstrap: 'components/bootstrap/js/bootstrap.min', | |
|
26 | 27 | bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min', |
|
27 | 28 | dateformat: 'dateformat/date.format', |
|
28 | 29 | jqueryui: 'components/jquery-ui/ui/minified/jquery-ui.min', |
@@ -35,7 +36,12 b'' | |||
|
35 | 36 | deps: ["underscore", "jquery"], |
|
36 | 37 | exports: "Backbone" |
|
37 | 38 | }, |
|
39 | bootstrap: { | |
|
40 | deps: ["jquery"], | |
|
41 | exports: "bootstrap" | |
|
42 | }, | |
|
38 | 43 | bootstraptour: { |
|
44 | deps: ["bootstrap"], | |
|
39 | 45 | exports: "Tour" |
|
40 | 46 | }, |
|
41 | 47 | dateformat: { |
General Comments 0
You need to be logged in to leave comments.
Login now