From cdb0f5cde06538b3d751f2da652fcd3298f638b6 Mon Sep 17 00:00:00 2001 From: aegisrunestone Date: Tue, 2 Sep 2014 14:53:58 +0800 Subject: [PATCH] Changed "instanceof jQuery" to "instanceof $" Original code will break if jquery noconflict is applied, where $ and jQuery produces jQuery instance of different versions. --- src/jquery.gridster.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.gridster.js b/src/jquery.gridster.js index 7bac91186..8a7890780 100755 --- a/src/jquery.gridster.js +++ b/src/jquery.gridster.js @@ -839,7 +839,7 @@ * than the original. */ fn.register_widget = function($el) { - var isDOM = $el instanceof jQuery; + var isDOM = $el instanceof $; var wgd = isDOM ? this.dom_to_coords($el) : $el; var posChanged = false; isDOM || ($el = wgd.el);