From: Jerome Jutteau Date: Mon, 29 Jul 2013 20:03:35 +0000 (+0000) Subject: Remove langage specific word from code X-Git-Tag: 1.1~202 X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/commitdiff_plain/ce572328d7458af0492c4004b44bd9cca80cb180?ds=inline Remove langage specific word from code --- diff --git a/lib/functions.js b/lib/functions.js index 2aa3bd6..816ea6d 100755 --- a/lib/functions.js +++ b/lib/functions.js @@ -62,7 +62,7 @@ function upload_progress (e) */ var p = Math.round (e.loaded * 100 / e.total); if (p == 100) - show_upload_progression ('Finalizing ...'); + show_upload_progression (' '); else show_upload_progression (p.toString() + '%'); } @@ -180,7 +180,7 @@ function async_upload_progress (e) return; var p = Math.round ((e.loaded + async_global_transfered) * 100 / (async_global_file.size)); if (p == 100) - show_upload_progression ('Finalizing...'); + show_upload_progression (' '); else show_upload_progression (p.toString() + '%'); }