diff options
author | John McLear <john@mclear.co.uk> | 2015-03-26 13:16:54 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2015-03-26 13:16:54 +0000 |
commit | 1a5ea8707fdb2c692f5d69980a057b1c09f81ab7 (patch) | |
tree | 56994afe824f539f0a5f9a76b3cd9e446d856fbf /src/static/js | |
parent | ec1956b4b6a41b92e636297cf5a9e8cf25938f79 (diff) | |
download | etherpad-lite-1a5ea8707fdb2c692f5d69980a057b1c09f81ab7.zip |
make the pad contents act like an application and not contents, this can probably be togglable but default state should be editable
Diffstat (limited to 'src/static/js')
-rw-r--r-- | src/static/js/ace.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/ace.js b/src/static/js/ace.js index addc412f..376e786b 100644 --- a/src/static/js/ace.js +++ b/src/static/js/ace.js @@ -265,7 +265,7 @@ plugins.ensure(function () {\n\ iframeHTML: iframeHTML }); - iframeHTML.push('</head><body id="innerdocbody" class="syntax" spellcheck="false"> </body></html>'); + iframeHTML.push('</head><body id="innerdocbody" role="application" class="syntax" spellcheck="false"> </body></html>'); // Expose myself to global for my child frame. var thisFunctionsName = "ChildAccessibleAce2Editor"; |