mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Effect: Create a local jQuery variable to make jQuery Color work
Fixes #10199 Closes gh-1282
This commit is contained in:
parent
bb29287c3c
commit
2447cabd59
@ -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: {}
|
||||
|
Loading…
Reference in New Issue
Block a user