Revert "trim filename in webfrontend for windows compatibility"

This commit is contained in:
Morris Jobke 2019-02-01 11:59:49 +01:00 committed by GitHub
parent 3d399a56bb
commit f46a251625
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -2471,7 +2471,7 @@
}
try {
var newName = input.val().trim();
var newName = input.val();
input.tooltip('hide');
form.remove();

View File

@ -167,7 +167,7 @@
event.preventDefault();
if (checkInput()) {
var newname = $input.val().trim();
var newname = $input.val();
/* Find the right actionHandler that should be called.
* Actions is retrieved by using `actionSpec.id` */