Removed code unnecessary for Move to select the file name up to a period.

The Move button expects a file path, which shouldn't include a file
extension suffix.
This commit is contained in:
Nathan Daly 2016-01-18 23:17:16 -08:00
parent a05b947f8d
commit ec47775d50

View File

@ -843,11 +843,8 @@ define([
}
});
input.focus();
if (input.val().indexOf(".") > 0) {
input[0].setSelectionRange(0,input.val().indexOf("."));
} else {
input.select();
}
// Highlight the current path in the input box.
input.select();
}
});
};