diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:12:12 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:12:12 -0400 |
commit | c9aa36da061816dee256a979c2ff8d2ee41824d9 (patch) | |
tree | 29f7002b80ee984b488bd047dbbd80b36bf892e9 /resources/jquery/jquery.mwExtension.js | |
parent | b4274e0e33eafb5e9ead9d949ebf031a9fb8363b (diff) | |
parent | d1ba966140d7a60cd5ae4e8667ceb27c1a138592 (diff) |
Merge branch 'archwiki'
# Conflicts:
# skins/ArchLinux.php
# skins/ArchLinux/archlogo.gif
Diffstat (limited to 'resources/jquery/jquery.mwExtension.js')
-rw-r--r-- | resources/jquery/jquery.mwExtension.js | 122 |
1 files changed, 0 insertions, 122 deletions
diff --git a/resources/jquery/jquery.mwExtension.js b/resources/jquery/jquery.mwExtension.js deleted file mode 100644 index de399788..00000000 --- a/resources/jquery/jquery.mwExtension.js +++ /dev/null @@ -1,122 +0,0 @@ -/* - * JavaScript backwards-compatibility alternatives and other convenience functions - */ -( function ( $ ) { - - $.extend({ - trimLeft: function ( str ) { - return str === null ? '' : str.toString().replace( /^\s+/, '' ); - }, - trimRight: function ( str ) { - return str === null ? - '' : str.toString().replace( /\s+$/, '' ); - }, - ucFirst: function ( str ) { - return str.charAt( 0 ).toUpperCase() + str.substr( 1 ); - }, - escapeRE: function ( str ) { - return str.replace ( /([\\{}()|.?*+\-\^$\[\]])/g, '\\$1' ); - }, - isDomElement: function ( el ) { - return !!el && !!el.nodeType; - }, - isEmpty: function ( v ) { - var key; - if ( v === '' || v === 0 || v === '0' || v === null - || v === false || v === undefined ) - { - return true; - } - // the for-loop could potentially contain prototypes - // to avoid that we check it's length first - if ( v.length === 0 ) { - return true; - } - if ( typeof v === 'object' ) { - for ( key in v ) { - return false; - } - return true; - } - return false; - }, - compareArray: function ( arrThis, arrAgainst ) { - if ( arrThis.length !== arrAgainst.length ) { - return false; - } - for ( var i = 0; i < arrThis.length; i++ ) { - if ( $.isArray( arrThis[i] ) ) { - if ( !$.compareArray( arrThis[i], arrAgainst[i] ) ) { - return false; - } - } else if ( arrThis[i] !== arrAgainst[i] ) { - return false; - } - } - return true; - }, - compareObject: function ( objectA, objectB ) { - var prop, type; - - // Do a simple check if the types match - if ( typeof objectA === typeof objectB ) { - - // Only loop over the contents if it really is an object - if ( typeof objectA === 'object' ) { - // If they are aliases of the same object (ie. mw and mediaWiki) return now - if ( objectA === objectB ) { - return true; - } else { - // Iterate over each property - for ( prop in objectA ) { - // Check if this property is also present in the other object - if ( prop in objectB ) { - // Compare the types of the properties - type = typeof objectA[prop]; - if ( type === typeof objectB[prop] ) { - // Recursively check objects inside this one - switch ( type ) { - case 'object' : - if ( !$.compareObject( objectA[prop], objectB[prop] ) ) { - return false; - } - break; - case 'function' : - // Functions need to be strings to compare them properly - if ( objectA[prop].toString() !== objectB[prop].toString() ) { - return false; - } - break; - default: - // Strings, numbers - if ( objectA[prop] !== objectB[prop] ) { - return false; - } - break; - } - } else { - return false; - } - } else { - return false; - } - } - // Check for properties in B but not in A - // This is about 15% faster (tested in Safari 5 and Firefox 3.6) - // ...than incrementing a count variable in the above and below loops - // See also: http://www.mediawiki.org/wiki/ResourceLoader/Default_modules/compareObject_test#Results - for ( prop in objectB ) { - if ( !( prop in objectA ) ) { - return false; - } - } - } - } - } else { - return false; - } - return true; - } - }); - -}( jQuery ) ); |