diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-06-06 14:07:27 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-06-06 14:07:27 -0500 |
commit | 8c3bb26a62ade208d5035015299c2126b15854cb (patch) | |
tree | 6e8b789cfad8bd87e86b1df5df4c6aacfc4e6eb7 /phpBB/styles/subsilver2 | |
parent | 4a4a822df888231d2fbea7bf9555604b93f3dc95 (diff) | |
parent | 9db0fa88569da1922ac21d9a003b7e577a96c810 (diff) | |
download | forums-8c3bb26a62ade208d5035015299c2126b15854cb.tar forums-8c3bb26a62ade208d5035015299c2126b15854cb.tar.gz forums-8c3bb26a62ade208d5035015299c2126b15854cb.tar.bz2 forums-8c3bb26a62ade208d5035015299c2126b15854cb.tar.xz forums-8c3bb26a62ade208d5035015299c2126b15854cb.zip |
Merge remote-tracking branch 'remotes/cyberalien/feature/editor-code-tabs' into develop
# By Vjacheslav Trushkin
# Via Vjacheslav Trushkin
* remotes/cyberalien/feature/editor-code-tabs:
[feature/editor-code-tabs] Make inTag function reusable
[feature/editor-code-tabs] Check for browser support in function
[feature/editor-code-tabs] Apply code editor to everything
[feature/editor-code-tabs] Correctly count indentation on first line
Diffstat (limited to 'phpBB/styles/subsilver2')
-rw-r--r-- | phpBB/styles/subsilver2/template/editor.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/styles/subsilver2/template/editor.js b/phpBB/styles/subsilver2/template/editor.js index 93506b8d4a..6cf616e180 100644 --- a/phpBB/styles/subsilver2/template/editor.js +++ b/phpBB/styles/subsilver2/template/editor.js @@ -38,6 +38,7 @@ function initInsertions() { } var textarea = doc.forms[form_name].elements[text_name]; + phpbb.applyCodeEditor(textarea); if (is_ie && typeof(baseHeight) !== 'number') { textarea.focus(); |