diff options
author | Richard Worth <rdworth@gmail.com> | 2008-06-09 05:59:18 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-06-09 05:59:18 +0000 |
commit | 03528f2942ad52ab1bfca8810aa5ce0bfe3ba4c7 (patch) | |
tree | c2ae251d883b2b14cb81e439d3e306aa1c4e662e /tests/draggable.js | |
parent | d2397d8d63a4e5325e0d6aff0ea8fc802da7468c (diff) | |
download | jquery-ui-03528f2942ad52ab1bfca8810aa5ce0bfe3ba4c7.tar.gz jquery-ui-03528f2942ad52ab1bfca8810aa5ce0bfe3ba4c7.zip |
tests - wrapped in closures so all.html will work
Diffstat (limited to 'tests/draggable.js')
-rw-r--r-- | tests/draggable.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/draggable.js b/tests/draggable.js index d428a21ff..2f5a079de 100644 --- a/tests/draggable.js +++ b/tests/draggable.js @@ -1,7 +1,7 @@ /* * draggable unit tests */ - +(function($) { // // Draggable Test Helper Functions // @@ -487,3 +487,5 @@ test("#2965 cursorAt with margin", function() { equals(actual.top, expected.top, "10px margin. top"); }); + +})(jQuery); |