| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/selectinvert.js.tar |
wp-content/plugins/file-manager-advanced/application/library/js/commands/selectinvert.js 0000644 00000000710 15115005043 0033531 0 ustar 00 home/xbodynamge/crosstraining /**
* @class elFinder command "selectinvert"
* Invert Selection of cwd items
*
* @author Naoki Sawada
**/
elFinder.prototype.commands.selectinvert = function() {
"use strict";
this.updateOnSelect = false;
this.getstate = function() {
return 0;
};
this.exec = function() {
$(document).trigger($.Event('keydown', { keyCode: 73, ctrlKey : true, shiftKey : true, altKey : false, metaKey : false }));
return $.Deferred().resolve();
};
};
home/xbodynamge/crosstraining/wp-content/plugins/wp-file-manager/lib/js/commands/selectinvert.js 0000644 00000000727 15115113704 0027304 0 ustar 00 /**
* @class elFinder command "selectinvert"
* Invert Selection of cwd items
*
* @author Naoki Sawada
**/
elFinder.prototype.commands.selectinvert = function() {
"use strict";
this.updateOnSelect = false;
this.getstate = function() {
return 0;
};
this.exec = function() {
jQuery(document).trigger(jQuery.Event('keydown', { keyCode: 73, ctrlKey : true, shiftKey : true, altKey : false, metaKey : false }));
return jQuery.Deferred().resolve();
};
};