aboutsummaryrefslogtreecommitdiffstats
path: root/demos/resizable/animate.html
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-06-30 22:14:51 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-07-21 11:00:41 -0400
commit4ea6f8f0b42c630174de684767de54bd078a5578 (patch)
treeb81e7325208fb9bbced8f241083ff36315e460de /demos/resizable/animate.html
parentdf37d7d505edc429f4238f105e61ff3644a17b8b (diff)
downloadjquery-ui-4ea6f8f0b42c630174de684767de54bd078a5578.tar.gz
jquery-ui-4ea6f8f0b42c630174de684767de54bd078a5578.zip
Resizable: Update demos to use AMD
Ref #10119
Diffstat (limited to 'demos/resizable/animate.html')
-rw-r--r--demos/resizable/animate.html10
1 files changed, 2 insertions, 8 deletions
diff --git a/demos/resizable/animate.html b/demos/resizable/animate.html
index b06e41ddb..344bba014 100644
--- a/demos/resizable/animate.html
+++ b/demos/resizable/animate.html
@@ -4,23 +4,17 @@
<meta charset="utf-8">
<title>jQuery UI Resizable - Animate</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: 1px dotted gray; }
</style>
- <script>
- $(function() {
+ <script src="../../external/requirejs/require.js"></script>
+ <script src="../bootstrap.js">
$( "#resizable" ).resizable({
animate: true
});
- });
</script>
</head>
<body>