Effect: Create a local jQuery variable to make jQuery Color work

Fixes #10199
Closes gh-1282
This commit is contained in:
Scott González 2014-07-14 13:18:44 -04:00
parent bb29287c3c
commit 2447cabd59

View File

@ -20,7 +20,11 @@
}
}(function( $ ) {
var dataSpace = "ui-effects-";
var dataSpace = "ui-effects-",
// Create a local jQuery because jQuery Color relies on it and the
// global may not exist with AMD and a custom build (#10199)
jQuery = $;
$.effects = {
effect: {}