##// END OF EJS Templates
Changed require.js load calls to allow require.js to pass...
Changed require.js load calls to allow require.js to pass the import module handles around.

File last commit:

r14374:49ef62f3
r14374:49ef62f3
Show More
int.js
19 lines | 766 B | application/javascript | JavascriptLexer
//----------------------------------------------------------------------------
// Copyright (C) 2013 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
//============================================================================
// IntWidget
//============================================================================
/**
* @module IPython
* @namespace IPython
**/
define(["notebook/js/widget"], function(widget_manager){
var IntWidgetModel = IPython.WidgetModel.extend({});
widget_manager.register_widget_model('IntWidgetModel', IntWidgetModel);
});