chore(dom) toggleSelectedFile: rm " "

This commit is contained in:
coderaiser 2017-01-06 14:05:17 +02:00
parent 01735954dc
commit 94cc923d01

View file

@ -871,9 +871,9 @@ var CloudCmd, Util, DOM, CloudFunc;
* select current file
* @param currentFile
*/
this.toggleSelectedFile = function(currentFile) {
var current = currentFile || this.getCurrentFile();
this.toggleSelectedFile = function(currentFile) {
var current = currentFile || this.getCurrentFile();
current.classList.toggle(SELECTED_FILE);
return Cmd;