diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-06-30 22:14:51 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-07-21 11:00:41 -0400 |
commit | 4ea6f8f0b42c630174de684767de54bd078a5578 (patch) | |
tree | b81e7325208fb9bbced8f241083ff36315e460de /demos/resizable/max-min.html | |
parent | df37d7d505edc429f4238f105e61ff3644a17b8b (diff) | |
download | jquery-ui-4ea6f8f0b42c630174de684767de54bd078a5578.tar.gz jquery-ui-4ea6f8f0b42c630174de684767de54bd078a5578.zip |
Resizable: Update demos to use AMD
Ref #10119
Diffstat (limited to 'demos/resizable/max-min.html')
-rw-r--r-- | demos/resizable/max-min.html | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/demos/resizable/max-min.html b/demos/resizable/max-min.html index 88e8ca3f3..ed43ec795 100644 --- a/demos/resizable/max-min.html +++ b/demos/resizable/max-min.html @@ -4,25 +4,19 @@ <meta charset="utf-8"> <title>jQuery UI Resizable - Maximum / minimum size</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: 200px; height: 150px; padding: 5px; } #resizable h3 { text-align: center; margin: 0; } </style> - <script> - $(function() { + <script src="../../external/requirejs/require.js"></script> + <script src="../bootstrap.js"> $( "#resizable" ).resizable({ maxHeight: 250, maxWidth: 350, minHeight: 150, minWidth: 200 }); - }); </script> </head> <body> |