Commit 9a17a09c authored by kyos's avatar kyos

Fixed codacy requirements

parent aa4a5dc3
...@@ -201,10 +201,10 @@ $("#search").on("change input.typeahead:selected", function(){ ...@@ -201,10 +201,10 @@ $("#search").on("change input.typeahead:selected", function(){
}); });
}); });
$("#btn-upload-format").on('change', function () { $("#btn-upload-format").on("change", function () {
var filename = $(this).val(); var filename = $(this).val();
if (filename.substring(3,11) == 'fakepath') { if (filename.substring(3,11) === "fakepath") {
filename = filename.substring(12); filename = filename.substring(12);
} // Remove c:\fake at beginning from localhost chrome } // Remove c:\fake at beginning from localhost chrome
$('#upload-format').html(filename); $("#upload-format").html(filename);
}); });
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment