diff options
Diffstat (limited to 'tests/dialog.js')
-rw-r--r-- | tests/dialog.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/dialog.js b/tests/dialog.js index c1c8ea54f..7520fe8b7 100644 --- a/tests/dialog.js +++ b/tests/dialog.js @@ -1,10 +1,11 @@ /*
* dialog unit tests
*/
-
+(function($) {
//
// Dialog Test Helper Functions
//
+
var el,
offsetBefore, offsetAfter,
heightBefore, heightAfter,
@@ -307,3 +308,5 @@ test("close", function() { });
module("dialog: Tickets");
+
+})(jQuery);
|