|
From: Meik S. <acy...@ph...> - 2009-08-20 15:09:45
|
Author: acydburn
Date: Thu Aug 20 16:09:28 2009
New Revision: 10038
Log:
Fix wrong textLength call in Webkit-based browsers - Bug #25825 - patch by Technocrat
Modified:
branches/phpBB-3_0_0/phpBB/adm/style/editor.js
branches/phpBB-3_0_0/phpBB/styles/prosilver/template/editor.js
branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/editor.js
Modified: branches/phpBB-3_0_0/phpBB/adm/style/editor.js
==============================================================================
*** branches/phpBB-3_0_0/phpBB/adm/style/editor.js (original)
--- branches/phpBB-3_0_0/phpBB/adm/style/editor.js Thu Aug 20 16:09:28 2009
***************
*** 258,264 ****
*/
function mozWrap(txtarea, open, close)
{
! var selLength = txtarea.textLength;
var selStart = txtarea.selectionStart;
var selEnd = txtarea.selectionEnd;
var scrollTop = txtarea.scrollTop;
--- 258,264 ----
*/
function mozWrap(txtarea, open, close)
{
! var selLength = (typeof(txtarea.textLength) == 'undefined') ? txtarea.value.length : txtarea.textLength;
var selStart = txtarea.selectionStart;
var selEnd = txtarea.selectionEnd;
var scrollTop = txtarea.scrollTop;
Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/template/editor.js
==============================================================================
*** branches/phpBB-3_0_0/phpBB/styles/prosilver/template/editor.js (original)
--- branches/phpBB-3_0_0/phpBB/styles/prosilver/template/editor.js Thu Aug 20 16:09:28 2009
***************
*** 308,314 ****
*/
function mozWrap(txtarea, open, close)
{
! var selLength = txtarea.textLength;
var selStart = txtarea.selectionStart;
var selEnd = txtarea.selectionEnd;
var scrollTop = txtarea.scrollTop;
--- 308,314 ----
*/
function mozWrap(txtarea, open, close)
{
! var selLength = (typeof(txtarea.textLength) == 'undefined') ? txtarea.value.length : txtarea.textLength;
var selStart = txtarea.selectionStart;
var selEnd = txtarea.selectionEnd;
var scrollTop = txtarea.scrollTop;
Modified: branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/editor.js
==============================================================================
*** branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/editor.js (original)
--- branches/phpBB-3_0_0/phpBB/styles/subsilver2/template/editor.js Thu Aug 20 16:09:28 2009
***************
*** 261,267 ****
*/
function mozWrap(txtarea, open, close)
{
! var selLength = txtarea.textLength;
var selStart = txtarea.selectionStart;
var selEnd = txtarea.selectionEnd;
var scrollTop = txtarea.scrollTop;
--- 261,267 ----
*/
function mozWrap(txtarea, open, close)
{
! var selLength = (typeof(txtarea.textLength) == 'undefined') ? txtarea.value.length : txtarea.textLength;
var selStart = txtarea.selectionStart;
var selEnd = txtarea.selectionEnd;
var scrollTop = txtarea.scrollTop;
|