mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Bug #38765 - Unify BBCode selection across browsers
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10472 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
6b519c8bdf
commit
63be6762f3
2 changed files with 3 additions and 2 deletions
|
@ -153,6 +153,7 @@
|
||||||
<li>[Fix] Fix language string for PM-Reports refering to post-data. (Bug #54745)</li>
|
<li>[Fix] Fix language string for PM-Reports refering to post-data. (Bug #54745)</li>
|
||||||
<li>[Fix] Do not store email templates in database. (Bug #54505)</li>
|
<li>[Fix] Do not store email templates in database. (Bug #54505)</li>
|
||||||
<li>[Fix] Fix javascript bug in the smilies ACP. (Bug #55725)</li>
|
<li>[Fix] Fix javascript bug in the smilies ACP. (Bug #55725)</li>
|
||||||
|
<li>[Fix] Unify BBCode Selection across browsers. (Bug #38765)</li>
|
||||||
<li>[Change] Move redirect into a hidden field to avoid issues with mod_security. (Bug #54145)</li>
|
<li>[Change] Move redirect into a hidden field to avoid issues with mod_security. (Bug #54145)</li>
|
||||||
<li>[Change] Log activation through inactive users ACP. (Bug #30145)</li>
|
<li>[Change] Log activation through inactive users ACP. (Bug #30145)</li>
|
||||||
<li>[Change] Send time of last item instead of current time in ATOM Feeds. (Bug #53305)</li>
|
<li>[Change] Send time of last item instead of current time in ATOM Feeds. (Bug #53305)</li>
|
||||||
|
|
|
@ -323,8 +323,8 @@ function mozWrap(txtarea, open, close)
|
||||||
var s3 = (txtarea.value).substring(selEnd, selLength);
|
var s3 = (txtarea.value).substring(selEnd, selLength);
|
||||||
|
|
||||||
txtarea.value = s1 + open + s2 + close + s3;
|
txtarea.value = s1 + open + s2 + close + s3;
|
||||||
txtarea.selectionStart = selEnd + open.length + close.length;
|
txtarea.selectionStart = selStart + open.length;
|
||||||
txtarea.selectionEnd = txtarea.selectionStart;
|
txtarea.selectionEnd = selEnd + open.length;
|
||||||
txtarea.focus();
|
txtarea.focus();
|
||||||
txtarea.scrollTop = scrollTop;
|
txtarea.scrollTop = scrollTop;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue