aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/admin.js
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-05-31 23:00:07 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-05-31 23:00:07 +0200
commitc000520add375da94d75d24f05ceb34ef0538475 (patch)
tree90b38fee5561c4ba23683dc8019d2d4ac2bedbc8 /phpBB/adm/style/admin.js
parent93c310f66b42e2090f3abeaa814aaa487ed8f16a (diff)
parent48679eeff884ce564f7a5ceb7db1b6c64e5dcb67 (diff)
downloadforums-c000520add375da94d75d24f05ceb34ef0538475.tar
forums-c000520add375da94d75d24f05ceb34ef0538475.tar.gz
forums-c000520add375da94d75d24f05ceb34ef0538475.tar.bz2
forums-c000520add375da94d75d24f05ceb34ef0538475.tar.xz
forums-c000520add375da94d75d24f05ceb34ef0538475.zip
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/12641] Use jQuery's trim() method. IE8 does not support the native one
Diffstat (limited to 'phpBB/adm/style/admin.js')
-rw-r--r--phpBB/adm/style/admin.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/admin.js b/phpBB/adm/style/admin.js
index 7bda86e1e3..a839e7e0e2 100644
--- a/phpBB/adm/style/admin.js
+++ b/phpBB/adm/style/admin.js
@@ -75,7 +75,7 @@ function parse_document(container)
var cell = $(this),
colspan = parseInt(cell.attr('colspan')),
dfn = cell.attr('data-dfn'),
- text = dfn ? dfn : cell.text().trim();
+ text = dfn ? dfn : $.trim(cell.text());
if (text == '&nbsp;') text = '';
colspan = isNaN(colspan) || colspan < 1 ? 1 : colspan;
@@ -114,7 +114,7 @@ function parse_document(container)
cells.each(function() {
var cell = $(this),
colspan = parseInt(cell.attr('colspan')),
- text = cell.text().trim();
+ text = $.trim(cell.text());
if (headersLength <= column) {
return;