mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-24 12:05:22 +08:00
Added standard IPY JS header to widget JS files.
This commit is contained in:
parent
b9a274a425
commit
ce53644d54
@ -1,3 +1,18 @@
|
||||
//----------------------------------------------------------------------------
|
||||
// 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.
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
//============================================================================
|
||||
// BoolWidget
|
||||
//============================================================================
|
||||
|
||||
/**
|
||||
* @module IPython
|
||||
* @namespace IPython
|
||||
**/
|
||||
|
||||
define(["notebook/js/widget"], function(){
|
||||
|
||||
|
@ -1,3 +1,18 @@
|
||||
//----------------------------------------------------------------------------
|
||||
// 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.
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
//============================================================================
|
||||
// ButtonWidget
|
||||
//============================================================================
|
||||
|
||||
/**
|
||||
* @module IPython
|
||||
* @namespace IPython
|
||||
**/
|
||||
|
||||
define(["notebook/js/widget"], function(){
|
||||
|
||||
|
@ -1,3 +1,19 @@
|
||||
//----------------------------------------------------------------------------
|
||||
// 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.
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
//============================================================================
|
||||
// ContainerWidget
|
||||
//============================================================================
|
||||
|
||||
/**
|
||||
* @module IPython
|
||||
* @namespace IPython
|
||||
**/
|
||||
|
||||
define(["notebook/js/widget"], function(){
|
||||
var ContainerModel = IPython.WidgetModel.extend({});
|
||||
IPython.widget_manager.register_widget_model('ContainerWidgetModel', ContainerModel);
|
||||
|
@ -1,3 +1,19 @@
|
||||
//----------------------------------------------------------------------------
|
||||
// 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.
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
//============================================================================
|
||||
// FloatWidget
|
||||
//============================================================================
|
||||
|
||||
/**
|
||||
* @module IPython
|
||||
* @namespace IPython
|
||||
**/
|
||||
|
||||
define(["notebook/js/widget"], function(){
|
||||
var FloatWidgetModel = IPython.WidgetModel.extend({});
|
||||
IPython.widget_manager.register_widget_model('FloatWidgetModel', FloatWidgetModel);
|
||||
|
@ -1,3 +1,19 @@
|
||||
//----------------------------------------------------------------------------
|
||||
// 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(){
|
||||
var IntWidgetModel = IPython.WidgetModel.extend({});
|
||||
IPython.widget_manager.register_widget_model('IntWidgetModel', IntWidgetModel);
|
||||
|
@ -1,3 +1,19 @@
|
||||
//----------------------------------------------------------------------------
|
||||
// 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.
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
//============================================================================
|
||||
// MultiContainerWidget
|
||||
//============================================================================
|
||||
|
||||
/**
|
||||
* @module IPython
|
||||
* @namespace IPython
|
||||
**/
|
||||
|
||||
define(["notebook/js/widget"], function(){
|
||||
var MulticontainerModel = IPython.WidgetModel.extend({});
|
||||
IPython.widget_manager.register_widget_model('MulticontainerWidgetModel', MulticontainerModel);
|
||||
|
@ -1,3 +1,19 @@
|
||||
//----------------------------------------------------------------------------
|
||||
// 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.
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
//============================================================================
|
||||
// SelectionWidget
|
||||
//============================================================================
|
||||
|
||||
/**
|
||||
* @module IPython
|
||||
* @namespace IPython
|
||||
**/
|
||||
|
||||
define(["notebook/js/widget"], function(){
|
||||
var SelectionWidgetModel = IPython.WidgetModel.extend({});
|
||||
IPython.widget_manager.register_widget_model('SelectionWidgetModel', SelectionWidgetModel);
|
||||
|
@ -1,3 +1,19 @@
|
||||
//----------------------------------------------------------------------------
|
||||
// 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.
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
//============================================================================
|
||||
// StringWidget
|
||||
//============================================================================
|
||||
|
||||
/**
|
||||
* @module IPython
|
||||
* @namespace IPython
|
||||
**/
|
||||
|
||||
define(["notebook/js/widget"], function(){
|
||||
var StringWidgetModel = IPython.WidgetModel.extend({});
|
||||
IPython.widget_manager.register_widget_model('StringWidgetModel', StringWidgetModel);
|
||||
|
Loading…
Reference in New Issue
Block a user