diff options
author | John McLear <john@mclear.co.uk> | 2015-04-13 10:52:15 +0100 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2015-04-13 10:52:15 +0100 |
commit | 629f909d572bfd0f0dc8592bc856c8f7a4c7b25c (patch) | |
tree | a38d7b4575594921194011cd092ddaa91d975af9 /src | |
parent | 431c55811ff98fc850a42e99d7614b95032c20ce (diff) | |
download | etherpad-lite-629f909d572bfd0f0dc8592bc856c8f7a4c7b25c.zip |
add some semicoolons to prevent chrome warning
Diffstat (limited to 'src')
-rw-r--r-- | src/static/js/html10n.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/static/js/html10n.js b/src/static/js/html10n.js index 19cf9de1..44abd7a0 100644 --- a/src/static/js/html10n.js +++ b/src/static/js/html10n.js @@ -681,9 +681,9 @@ window.html10n = (function(window, document, undefined) { // Expand two-part locale specs var i=0 langs.forEach(function(lang) { - if(!lang) return - langs[i++] = lang - if(~lang.indexOf('-')) langs[i++] = lang.substr(0, lang.indexOf('-')) + if(!lang) return; + langs[i++] = lang; + if(~lang.indexOf('-')) langs[i++] = lang.substr(0, lang.indexOf('-')); }) this.build(langs, function(er, translations) { |