aboutsummaryrefslogtreecommitdiffstats
path: root/tests/resizable.js
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-06-09 05:59:18 +0000
committerRichard Worth <rdworth@gmail.com>2008-06-09 05:59:18 +0000
commit03528f2942ad52ab1bfca8810aa5ce0bfe3ba4c7 (patch)
treec2ae251d883b2b14cb81e439d3e306aa1c4e662e /tests/resizable.js
parentd2397d8d63a4e5325e0d6aff0ea8fc802da7468c (diff)
downloadjquery-ui-03528f2942ad52ab1bfca8810aa5ce0bfe3ba4c7.tar.gz
jquery-ui-03528f2942ad52ab1bfca8810aa5ce0bfe3ba4c7.zip
tests - wrapped in closures so all.html will work
Diffstat (limited to 'tests/resizable.js')
-rw-r--r--tests/resizable.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/resizable.js b/tests/resizable.js
index 152691223..2e7da9adc 100644
--- a/tests/resizable.js
+++ b/tests/resizable.js
@@ -1,6 +1,7 @@
/*
* resizable tests
*/
+(function($) {
var drag = function(el, dx, dy, complete) {
@@ -398,3 +399,5 @@ test("ui-resizable-se { handles: 'all', grid: [0, 20] } wrapped", function() {
equals( target.height(), 120, "compare height");
});
+
+})(jQuery);