Show More
@@ -14,7 +14,7 b'' | |||
|
14 | 14 | // which make both this file fail at setting marked configuration, and textcell.js |
|
15 | 15 | // which search marked into global. |
|
16 | 16 | require(['components/marked/lib/marked', |
|
17 |
' |
|
|
17 | 'widgets/js/init'], | |
|
18 | 18 | |
|
19 | 19 | function (marked) { |
|
20 | 20 | "use strict"; |
@@ -10,13 +10,13 b'' | |||
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | define([ |
|
13 |
" |
|
|
14 |
" |
|
|
15 |
" |
|
|
16 |
" |
|
|
17 |
" |
|
|
18 |
" |
|
|
19 |
" |
|
|
20 |
" |
|
|
21 |
" |
|
|
13 | "widgets/js/widget_bool", | |
|
14 | "widgets/js/widget_button", | |
|
15 | "widgets/js/widget_container", | |
|
16 | "widgets/js/widget_float", | |
|
17 | "widgets/js/widget_image", | |
|
18 | "widgets/js/widget_int", | |
|
19 | "widgets/js/widget_selection", | |
|
20 | "widgets/js/widget_selectioncontainer", | |
|
21 | "widgets/js/widget_string", | |
|
22 | 22 | ], function(){ return true; }); |
@@ -14,7 +14,7 b'' | |||
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/manager", | |
|
18 | 18 | "underscore", |
|
19 | 19 | "backbone"], |
|
20 | 20 | function(WidgetManager, _, Backbone){ |
@@ -14,7 +14,7 b'' | |||
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var CheckboxView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
@@ -14,7 +14,7 b'' | |||
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var ButtonView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
@@ -14,7 +14,7 b'' | |||
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager) { | |
|
18 | 18 | |
|
19 | 19 | var ContainerView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render: function(){ |
@@ -14,8 +14,8 b'' | |||
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
18 |
" |
|
|
17 | define(["widgets/js/widget", | |
|
18 | "widgets/js/widget_int"], | |
|
19 | 19 | function(WidgetManager, int_widgets){ |
|
20 | 20 | |
|
21 | 21 | var IntSliderView = int_widgets[0]; |
@@ -14,7 +14,7 b'' | |||
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var ImageView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
@@ -14,7 +14,7 b'' | |||
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var IntSliderView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
@@ -14,7 +14,7 b'' | |||
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var DropdownView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
General Comments 0
You need to be logged in to leave comments.
Login now