diff options
Diffstat (limited to 'demos/resizable/helper.html')
-rw-r--r-- | demos/resizable/helper.html | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/demos/resizable/helper.html b/demos/resizable/helper.html index fff0c8bd9..d10e5b523 100644 --- a/demos/resizable/helper.html +++ b/demos/resizable/helper.html @@ -4,23 +4,17 @@ <meta charset="utf-8"> <title>jQuery UI Resizable - Helper</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/resizable.js"></script> <link rel="stylesheet" href="../demos.css"> <style> #resizable { width: 150px; height: 150px; padding: 0.5em; } #resizable h3 { text-align: center; margin: 0; } .ui-resizable-helper { border: 2px dotted #00F; } </style> - <script> - $(function() { + <script src="../../external/requirejs/require.js"></script> + <script src="../bootstrap.js"> $( "#resizable" ).resizable({ helper: "ui-resizable-helper" }); - }); </script> </head> <body> |