diff --git a/IPython/html/static/notebook/js/widgets/basic_widgets.js b/IPython/html/static/notebook/js/widgets/basic_widgets.js
index 6d3b0d2..2154633 100644
--- a/IPython/html/static/notebook/js/widgets/basic_widgets.js
+++ b/IPython/html/static/notebook/js/widgets/basic_widgets.js
@@ -10,15 +10,15 @@
//============================================================================
define([
- "notebook/js/widgets/bool",
- "notebook/js/widgets/button",
- "notebook/js/widgets/container",
- "notebook/js/widgets/float",
- "notebook/js/widgets/float_range",
- "notebook/js/widgets/image",
- "notebook/js/widgets/int",
- "notebook/js/widgets/int_range",
- "notebook/js/widgets/multicontainer",
- "notebook/js/widgets/selection",
- "notebook/js/widgets/string",
+ "notebook/js/widgets/widget_bool",
+ "notebook/js/widgets/widget_button",
+ "notebook/js/widgets/widget_container",
+ "notebook/js/widgets/widget_float",
+ "notebook/js/widgets/widget_float_range",
+ "notebook/js/widgets/widget_image",
+ "notebook/js/widgets/widget_int",
+ "notebook/js/widgets/widget_int_range",
+ "notebook/js/widgets/widget_multicontainer",
+ "notebook/js/widgets/widget_selection",
+ "notebook/js/widgets/widget_string",
], function(){ return true; });
diff --git a/IPython/html/static/notebook/js/widgets/widget_bool.js b/IPython/html/static/notebook/js/widgets/widget_bool.js
index 8f805e0..2d67764 100644
--- a/IPython/html/static/notebook/js/widgets/widget_bool.js
+++ b/IPython/html/static/notebook/js/widgets/widget_bool.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager){
+define(["notebook/js/widgets/widget"], function(widget_manager){
var BoolWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('BoolWidgetModel', BoolWidgetModel);
diff --git a/IPython/html/static/notebook/js/widgets/widget_button.js b/IPython/html/static/notebook/js/widgets/widget_button.js
index e106b21..956ee12 100644
--- a/IPython/html/static/notebook/js/widgets/widget_button.js
+++ b/IPython/html/static/notebook/js/widgets/widget_button.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager){
+define(["notebook/js/widgets/widget"], function(widget_manager){
var ButtonWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('ButtonWidgetModel', ButtonWidgetModel);
diff --git a/IPython/html/static/notebook/js/widgets/widget_container.js b/IPython/html/static/notebook/js/widgets/widget_container.js
index 1ff6f32..c7ffeae 100644
--- a/IPython/html/static/notebook/js/widgets/widget_container.js
+++ b/IPython/html/static/notebook/js/widgets/widget_container.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager) {
+define(["notebook/js/widgets/widget"], function(widget_manager) {
var set_flex_property = function(element, property_name, enabled) {
if (enabled) {
diff --git a/IPython/html/static/notebook/js/widgets/widget_float.js b/IPython/html/static/notebook/js/widgets/widget_float.js
index 418eb01..ab657cf 100644
--- a/IPython/html/static/notebook/js/widgets/widget_float.js
+++ b/IPython/html/static/notebook/js/widgets/widget_float.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager){
+define(["notebook/js/widgets/widget"], function(widget_manager){
var FloatWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('FloatWidgetModel', FloatWidgetModel);
});
\ No newline at end of file
diff --git a/IPython/html/static/notebook/js/widgets/widget_float_range.js b/IPython/html/static/notebook/js/widgets/widget_float_range.js
index e9f29a3..7eca86d 100644
--- a/IPython/html/static/notebook/js/widgets/widget_float_range.js
+++ b/IPython/html/static/notebook/js/widgets/widget_float_range.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager){
+define(["notebook/js/widgets/widget"], function(widget_manager){
var FloatRangeWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('FloatRangeWidgetModel', FloatRangeWidgetModel);
diff --git a/IPython/html/static/notebook/js/widgets/widget_image.js b/IPython/html/static/notebook/js/widgets/widget_image.js
index 3e4e350..3ffa1d1 100644
--- a/IPython/html/static/notebook/js/widgets/widget_image.js
+++ b/IPython/html/static/notebook/js/widgets/widget_image.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager){
+define(["notebook/js/widgets/widget"], function(widget_manager){
var ImageWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('ImageWidgetModel', ImageWidgetModel);
diff --git a/IPython/html/static/notebook/js/widgets/widget_int.js b/IPython/html/static/notebook/js/widgets/widget_int.js
index 43d8f7e..fd3d681 100644
--- a/IPython/html/static/notebook/js/widgets/widget_int.js
+++ b/IPython/html/static/notebook/js/widgets/widget_int.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager){
+define(["notebook/js/widgets/widget"], function(widget_manager){
var IntWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('IntWidgetModel', IntWidgetModel);
});
\ No newline at end of file
diff --git a/IPython/html/static/notebook/js/widgets/widget_int_range.js b/IPython/html/static/notebook/js/widgets/widget_int_range.js
index 6f7532b..3418b01 100644
--- a/IPython/html/static/notebook/js/widgets/widget_int_range.js
+++ b/IPython/html/static/notebook/js/widgets/widget_int_range.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager){
+define(["notebook/js/widgets/widget"], function(widget_manager){
var IntRangeWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('IntRangeWidgetModel', IntRangeWidgetModel);
diff --git a/IPython/html/static/notebook/js/widgets/widget_multicontainer.js b/IPython/html/static/notebook/js/widgets/widget_multicontainer.js
index 9695725..14ab50a 100644
--- a/IPython/html/static/notebook/js/widgets/widget_multicontainer.js
+++ b/IPython/html/static/notebook/js/widgets/widget_multicontainer.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager){
+define(["notebook/js/widgets/widget"], function(widget_manager){
var MulticontainerModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('MulticontainerWidgetModel', MulticontainerModel);
diff --git a/IPython/html/static/notebook/js/widgets/widget_selection.js b/IPython/html/static/notebook/js/widgets/widget_selection.js
index 59f8143..7bf7cef 100644
--- a/IPython/html/static/notebook/js/widgets/widget_selection.js
+++ b/IPython/html/static/notebook/js/widgets/widget_selection.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager){
+define(["notebook/js/widgets/widget"], function(widget_manager){
var SelectionWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('SelectionWidgetModel', SelectionWidgetModel);
diff --git a/IPython/html/static/notebook/js/widgets/widget_string.js b/IPython/html/static/notebook/js/widgets/widget_string.js
index 016e69c..65b765f 100644
--- a/IPython/html/static/notebook/js/widgets/widget_string.js
+++ b/IPython/html/static/notebook/js/widgets/widget_string.js
@@ -14,7 +14,7 @@
* @namespace IPython
**/
-define(["notebook/js/widgets/base"], function(widget_manager){
+define(["notebook/js/widgets/widget"], function(widget_manager){
var StringWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('StringWidgetModel', StringWidgetModel);