diff options
author | Matthias Bartelmeß <mba@fourplusone.de> | 2012-07-19 04:10:47 -0700 |
---|---|---|
committer | Matthias Bartelmeß <mba@fourplusone.de> | 2012-07-19 04:10:47 -0700 |
commit | 76933f2b1d1dc1ec3e028b32592aea3400f9dff6 (patch) | |
tree | a01c796cc9160b4cbb8b76dc90342108e58c99de /src/templates | |
parent | 9aed433ad5947fbbeeac1bf94c0e4961f0833087 (diff) | |
parent | c3ddff3fa061a48ae7178c62038e143ab5304ec6 (diff) | |
download | etherpad-lite-76933f2b1d1dc1ec3e028b32592aea3400f9dff6.zip |
Merge pull request #888 from marcelklehr/feature/noscript-notification
Notify the user if Javascript is disabled
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/pad.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/templates/pad.html b/src/templates/pad.html index 02af9b10..36d6334c 100644 --- a/src/templates/pad.html +++ b/src/templates/pad.html @@ -148,7 +148,10 @@ <div id="editorcontainerbox"> <div id="editorcontainer"></div> - <div id="editorloadingbox">Loading...</div> + <div id="editorloadingbox"> + <p>Loading...</p> + <noscript><strong>Sorry, you have to enable Javascript in order to use this.</strong></noscript> + </div> </div> <div id="settings" class="popup"> |