diff options
author | Gared <mu.stefan@googlemail.com> | 2014-12-28 22:20:09 +0100 |
---|---|---|
committer | Gared <mu.stefan@googlemail.com> | 2014-12-28 22:20:09 +0100 |
commit | 018821e98c3e315eb37e55c05e743dc1268d04ad (patch) | |
tree | 62df77cc21926f250c8438b8ffdaa3f144db88cc | |
parent | 2307c6fbda8ef149aebf83d47d099ca6d94f7ffc (diff) | |
download | etherpad-lite-018821e98c3e315eb37e55c05e743dc1268d04ad.zip |
Use camel case
-rw-r--r-- | src/locales/en.json | 2 | ||||
-rw-r--r-- | src/static/css/pad.css | 2 | ||||
-rw-r--r-- | src/static/js/pad.js | 2 | ||||
-rw-r--r-- | src/templates/pad.html | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/locales/en.json b/src/locales/en.json index cea31263..130b59cb 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -24,7 +24,7 @@ "pad.colorpicker.cancel": "Cancel", "pad.loading": "Loading...", - "pad.nocookie": "Cookie could not be found. Please allow cookies in your browser!", + "pad.noCookie": "Cookie could not be found. Please allow cookies in your browser!", "pad.passwordRequired": "You need a password to access this pad", "pad.permissionDenied": "You do not have permission to access this pad", "pad.wrongPassword": "Your password was wrong", diff --git a/src/static/css/pad.css b/src/static/css/pad.css index b163a9a4..f1f859c1 100644 --- a/src/static/css/pad.css +++ b/src/static/css/pad.css @@ -1086,7 +1086,7 @@ input[type=checkbox] { display:none; } -#nocookie{ +#noCookie{ display:none; } diff --git a/src/static/js/pad.js b/src/static/js/pad.js index 6ca9e142..96c6f330 100644 --- a/src/static/js/pad.js +++ b/src/static/js/pad.js @@ -450,7 +450,7 @@ var pad = { if (!readCookie("test")) { $('#loading').hide(); - $('#nocookie').show(); + $('#noCookie').show(); } }); }, diff --git a/src/templates/pad.html b/src/templates/pad.html index c6d48cd3..e442ef00 100644 --- a/src/templates/pad.html +++ b/src/templates/pad.html @@ -114,8 +114,8 @@ <div id="wrongPassword"> <p data-l10n-id="pad.wrongPassword">Your password was wrong</p> </div> - <div id="nocookie"> - <p data-l10n-id="pad.nocookie">Cookie could not be found. Please allow cookies in your browser!</p> + <div id="noCookie"> + <p data-l10n-id="pad.noCookie">Cookie could not be found. Please allow cookies in your browser!</p> </div> <% e.begin_block("loading"); %> <p data-l10n-id="pad.loading" id="loading">Loading...</p> |