diff options
| author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-09-15 17:00:06 +0300 |
|---|---|---|
| committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-17 21:11:38 +0300 |
| commit | e5788cbda8d3d7e9b083f5cfe6f3e35ef5a6ba4f (patch) | |
| tree | 52d21ca6619224e6ead2d6b70f1b146089fd62df | |
| parent | 8ea5a77aa2dde246ec5de7617a0a2f3a83b14565 (diff) | |
| download | forums-e5788cbda8d3d7e9b083f5cfe6f3e35ef5a6ba4f.tar forums-e5788cbda8d3d7e9b083f5cfe6f3e35ef5a6ba4f.tar.gz forums-e5788cbda8d3d7e9b083f5cfe6f3e35ef5a6ba4f.tar.bz2 forums-e5788cbda8d3d7e9b083f5cfe6f3e35ef5a6ba4f.tar.xz forums-e5788cbda8d3d7e9b083f5cfe6f3e35ef5a6ba4f.zip | |
[ticket/11552] Disable responsive JS for IE8-
PHPBB3-11552
| -rw-r--r-- | phpBB/styles/prosilver/template/forum_fn.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js index 99fc50aadd..4496b200fc 100644 --- a/phpBB/styles/prosilver/template/forum_fn.js +++ b/phpBB/styles/prosilver/template/forum_fn.js @@ -440,6 +440,9 @@ function insert_single_user(formId, user) if (oldBrowser) { // Fix .linkslist.bulletin lists $('ul.linklist.bulletin li:first-child, ul.linklist.bulletin li.rightside:last-child').addClass('no-bulletin'); + + // Do not run functions below for old browsers + return; } // Resize navigation block to keep all links on same line |
