diff options
Diffstat (limited to 'ui/effect.js')
-rw-r--r-- | ui/effect.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/effect.js b/ui/effect.js index cd8c80d16..6ca565390 100644 --- a/ui/effect.js +++ b/ui/effect.js @@ -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: {} |