Make sure that jQuery works even when the individual modules are loaded separately AND jQuery.noConflict(true) is used. Fixes #7011.
This commit is contained in:
parent
b920f0aeb4
commit
a44ec40277
13 changed files with 52 additions and 3 deletions
|
@ -1,3 +1,5 @@
|
|||
(function( jQuery ) {
|
||||
|
||||
(function() {
|
||||
|
||||
jQuery.support = {};
|
||||
|
@ -132,7 +134,7 @@
|
|||
|
||||
// release memory in IE
|
||||
root = script = div = all = a = null;
|
||||
})();
|
||||
})( jQuery );
|
||||
|
||||
jQuery.props = {
|
||||
"for": "htmlFor",
|
||||
|
@ -146,3 +148,5 @@ jQuery.props = {
|
|||
usemap: "useMap",
|
||||
frameborder: "frameBorder"
|
||||
};
|
||||
|
||||
})( jQuery );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue