diff options
Diffstat (limited to 'demos/sortable/empty-lists.html')
-rw-r--r-- | demos/sortable/empty-lists.html | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/demos/sortable/empty-lists.html b/demos/sortable/empty-lists.html index 192544619..fa515b377 100644 --- a/demos/sortable/empty-lists.html +++ b/demos/sortable/empty-lists.html @@ -4,18 +4,13 @@ <meta charset="utf-8"> <title>jQuery UI Sortable - Handle empty 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, #sortable3 { list-style-type: none; margin: 0; float: left; margin-right: 10px; background: #eee; padding: 5px; width: 143px;} #sortable1 li, #sortable2 li, #sortable3 li { margin: 5px; padding: 5px; font-size: 1.2em; width: 120px; } </style> - <script> - $(function() { + <script src="../../external/requirejs/require.js"></script> + <script src="../bootstrap.js"> $( "ul.droptrue" ).sortable({ connectWith: "ul" }); @@ -26,7 +21,6 @@ }); $( "#sortable1, #sortable2, #sortable3" ).disableSelection(); - }); </script> </head> <body> |