Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50659 views
1
//----------------------------------------------------------------------------
2
// Copyright (C) 2013 The IPython Development Team
3
//
4
// Distributed under the terms of the BSD License. The full license is in
5
// the file COPYING, distributed as part of this software.
6
//----------------------------------------------------------------------------
7
8
//============================================================================
9
// Basic Widgets
10
//============================================================================
11
12
define([
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
], function(){ return true; });
23
24