✏️ 正在编辑: selectinvert.js
路径:
/var/www/yuppietech.com.br/wp-content/plugins/wp-file-manager/lib/js/commands/selectinvert.js
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
/** * @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(); }; };
💾 保存文件
← 返回文件管理器