PATH:
var
/
www
/
vhosts
/
sandbox.dos-group.com
/
httpdocs
/
mendrisio
/
wp-content
/
plugins
/
admin-menu-editor
/
js
/** * jQuery.fn.sort * -------------- * @param Function comparator: * Exactly the same behaviour as [1,2,3].sort(comparator) * * @param Function getSortable * A function that should return the element that is * to be sorted. The comparator will run on the * current collection, but you may want the actual * resulting sort to occur on a parent or another * associated element. * * E.g. $('td').sort(comparator, function(){ * return this.parentNode; * }) * * The <td>'s parent (<tr>) will be sorted instead * of the <td> itself. */ jQuery.fn.sort = (function(){ var sort = [].sort; return function(comparator, getSortable) { getSortable = getSortable || function(){return this;}; var placements = this.map(function(){ var sortElement = getSortable.call(this), parentNode = sortElement.parentNode, // Since the element itself will change position, we have // to have some way of storing its original position in // the DOM. The easiest way is to have a 'flag' node: nextSibling = parentNode.insertBefore( document.createTextNode(''), sortElement.nextSibling ); return function() { if (parentNode === this) { throw new Error( "You can't sort elements if any one is a descendant of another." ); } // Insert before flag: parentNode.insertBefore(this, nextSibling); // Remove flag: parentNode.removeChild(nextSibling); }; }); return sort.call(this, comparator).each(function(i){ placements[i].call(getSortable.call(this)); }); }; })();
[-] actor-manager.js.map
[open]
[-] jquery.sort.js
[open]
[-] jquery.color.d.ts
[open]
[-] admin-helpers.js
[open]
[-] menu-editor.js
[open]
[-] settings-page-utils.js
[open]
[-] jquery.form.js
[open]
[-] lazyload.d.ts
[open]
[-] settings-page-utils.ts
[open]
[-] jquery.qtip.js
[open]
[-] jquery.biscuit.js
[open]
[-] jquery.qtip.min.js
[open]
[+]
..
[-] lazyload.min.js
[open]
[-] knockout.js
[open]
[-] free-ko-extensions.js.map
[open]
[-] jquery.form.d.ts
[open]
[-] menu-highlight-fix.js
[open]
[-] actor-manager.js
[open]
[-] mini-func.js.map
[open]
[-] jquery.d.ts
[open]
[-] knockout.d.ts
[open]
[-] actor-manager.ts
[open]
[-] mini-func.ts
[open]
[-] menu-editor.d.ts
[open]
[-] mini-func.js
[open]
[-] free-ko-extensions.js
[open]
[-] settings-page-utils.js.map
[open]
[-] free-ko-extensions.ts
[open]
[-] common.d.ts
[open]
[-] jqueryui.d.ts
[open]
[-] jquery.biscuit.d.ts
[open]
[-] knockout-sortable.js
[open]
[-] lodash4.min.js
[open]