afaa035
click here to add a description
click here to add a homepage
The official jQuery user interface library. — Read more
http://jqueryui.com/
This URL has Read+Write access
Core: Better detection of when core is loaded twice. Fixes #5636 - Load ui.position before ui.core couse ui.core not execute.
@@ -7,10 +7,19 @@
*
* http://docs.jquery.com/UI
*/
-;jQuery.ui || (function($) {
+
+(function($) {
+// prevent duplicate loading
+// this is only a problem because we proxy existing functions
+// and we don't want to double proxy them
+$.ui = $.ui || {};
+if ($.ui.version) {
+ return;
+}
//Helper functions and ui object
-$.ui = {
+$.extend($.ui, {
version: "@VERSION",
// $.ui.plugin is deprecated. Use the proxy pattern instead.
@@ -103,7 +112,7 @@ $.ui = {
UP: 38,
WINDOWS: 91 // COMMAND
}
-};
+});
//jQuery plugins
$.fn.extend({
afaa035