diff options
Diffstat (limited to 'demos/sortable/connect-lists.html')
-rw-r--r-- | demos/sortable/connect-lists.html | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/demos/sortable/connect-lists.html b/demos/sortable/connect-lists.html index 834cb560a..4461e7364 100644 --- a/demos/sortable/connect-lists.html +++ b/demos/sortable/connect-lists.html @@ -4,11 +4,6 @@ <meta charset="utf-8"> <title>jQuery UI Sortable - Connect lists</title> <link rel="stylesheet" href="../../themes/base/all.css"> - <script src="../../external/jquery/jquery.js"></script> - <script src="../../ui/core.js"></script> - <script src="../../ui/widget.js"></script> - <script src="../../ui/mouse.js"></script> - <script src="../../ui/sortable.js"></script> <link rel="stylesheet" href="../demos.css"> <style> #sortable1, #sortable2 { @@ -28,12 +23,11 @@ width: 120px; } </style> - <script> - $(function() { + <script src="../../external/requirejs/require.js"></script> + <script src="../bootstrap.js"> $( "#sortable1, #sortable2" ).sortable({ connectWith: ".connectedSortable" }).disableSelection(); - }); </script> </head> <body> |