Edit File by line
/home/barbar84/www/wp-conte.../plugins/file-man.../applicat.../library/js/commands
File: colwidth.js
/**
[0] Fix | Delete
* @class elFinder command "colwidth"
[1] Fix | Delete
* CWD list table columns width to auto
[2] Fix | Delete
*
[3] Fix | Delete
* @author Naoki Sawada
[4] Fix | Delete
**/
[5] Fix | Delete
elFinder.prototype.commands.colwidth = function() {
[6] Fix | Delete
"use strict";
[7] Fix | Delete
this.alwaysEnabled = true;
[8] Fix | Delete
this.updateOnSelect = false;
[9] Fix | Delete
[10] Fix | Delete
this.getstate = function() {
[11] Fix | Delete
return this.fm.getUI('cwd').find('table').css('table-layout') === 'fixed' ? 0 : -1;
[12] Fix | Delete
};
[13] Fix | Delete
[14] Fix | Delete
this.exec = function() {
[15] Fix | Delete
this.fm.getUI('cwd').trigger('colwidth');
[16] Fix | Delete
return $.Deferred().resolve();
[17] Fix | Delete
};
[18] Fix | Delete
[19] Fix | Delete
};
[20] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function