diff options
author | Vitaly Takmazov | 2017-03-01 22:32:05 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-03-01 22:38:09 +0300 |
commit | 50e1e05a7f6d9061c68121558e7c2efdf987056a (patch) | |
tree | 82625d33a27497d15bcc1094ba59103dc1193cbd /juick-www/src/main | |
parent | e65231c9069599ac88835dda733a924535e164fa (diff) |
juick-www: fix isReadonly in scripts
Diffstat (limited to 'juick-www/src/main')
-rw-r--r-- | juick-www/src/main/static/scripts.js | 2 | ||||
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/layouts/content.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/juick-www/src/main/static/scripts.js b/juick-www/src/main/static/scripts.js index 636e7be8..2fb23130 100644 --- a/juick-www/src/main/static/scripts.js +++ b/juick-www/src/main/static/scripts.js @@ -14,7 +14,7 @@ NodeList.prototype.forEach = Array.prototype.forEach; HTMLCollection.prototype.forEach = Array.prototype.forEach; function isReadonly() { - return document.getElementById('body').getAttribute('data-readonly'); + return document.getElementById('body').getAttribute('data-readonly') === 'true'; } var ws, diff --git a/juick-www/src/main/webapp/WEB-INF/layouts/content.html b/juick-www/src/main/webapp/WEB-INF/layouts/content.html index 6a564034..76662b5d 100644 --- a/juick-www/src/main/webapp/WEB-INF/layouts/content.html +++ b/juick-www/src/main/webapp/WEB-INF/layouts/content.html @@ -12,7 +12,7 @@ <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" /> <link rel="icon" href="//i.juick.com/favicon.png" /> </head> - <body> + <body id="body" data-readonly="{{ readonly }}"> {% include "views/partial/navigation" %} <section id="content"> {% block content %} |