Add pagination to the mobile version doesn't work
2 posters
Page 1 of 1
Add pagination to the mobile version doesn't work
Hello,
This message is for Ange Tuteur:
I just saw your new script regarding the pagination for mobiles devices...
This one doesn't work and I have checked many times the total of the page and it is 15 pages on the script and under the CP (messages) so should be ok.
I have tried with 2 browsers with Iphone 4S on IOS 7 with Safari and Chrome but no change.
Any idea?
www.betclever.net
Thanks,
This message is for Ange Tuteur:
I just saw your new script regarding the pagination for mobiles devices...
This one doesn't work and I have checked many times the total of the page and it is 15 pages on the script and under the CP (messages) so should be ok.
I have tried with 2 browsers with Iphone 4S on IOS 7 with Safari and Chrome but no change.
Any idea?
www.betclever.net
Thanks,
Last edited by betclever on November 23rd 2014, 13:28; edited 1 time in total
Re: Add pagination to the mobile version doesn't work
Hello betclever,
The script here is for English boards. It needs to be modified for other languages.
Try this for French language :
The script here is for English boards. It needs to be modified for other languages.
Try this for French language :
- Code:
$(function() {
var perpage = 15, // amount of messages before a new page is added
p = document.getElementsByTagName('P'), l = window.location.pathname, current, last, tid = l.replace(/\/t(\d+).*/,'$1'), tname = l.replace(/(\/t\d+|\/t\d+p\d+)(-.*)/,'$2'), style = document.createElement('STYLE'), css = '.pagi {height:auto;color:#FFF;position:static;margin:2px}.pagactif{color:#FF8;cursor:default}.scroller{position:absolute;width:18px;height:28px;cursor:pointer}.left.scroller{background:url(http://2img.net/i/fa/mobile/inner-left-arrow.png) no-repeat center #444;left:65px}.right.scroller{background:url(http://2img.net/i/fa/mobile/inner-right-arrow.png) no-repeat center #444;right:65px}', i,j;
if (typeof _userdata.page_desktop === 'undefined') return;
style.type = 'text/css';
if (style.styleSheet) style.styleSheet.cssText = css;
else style.appendChild(document.createTextNode(css));
document.getElementsByTagName('HEAD')[0].appendChild(style);
for (i=0; i<p.length; i++) {
if (/mobile_title_content/.test(p[i].className)) {
current = Number(p[i].innerHTML.replace(/Page <strong>(\d+)<\/strong> sur <strong>\d+<\/strong>/i,'$1'));
last = Number(p[i].innerHTML.replace(/Page <strong>\d+<\/strong> sur <strong>(\d+)<\/strong>/i,'$1'));
}
}
if (last >= current) {
var b = document.getElementsByTagName('DIV'), title = document.createElement('DIV'), cen = document.createElement('DIV'), left = document.createElement('DIV'), right = document.createElement('DIV'), c = 1, d = 0;
title.className = 'mobile_title', left.className = 'left scroller', right.className = 'right scroller', cen.className = 'mobile_title_content', cen.setAttribute('style','left:85px;right:85px;text-overflow:clip;line-height:26px;');
for (j=0; j<b.length; j++) if (/mobile_title/.test(b[j].className) && /\d+/.test(b[j].nextSibling.id)) b[j].parentNode.insertBefore(title,b[j].nextSibling);
title.appendChild(cen), title.appendChild(left), title.appendChild(right);
left.onmousedown = function() { cen.scrollLeft -= 100 };
right.onmousedown = function() { cen.scrollLeft += 100 };
while (d < 2) {
if (d == 0 && current > 1) newPage('mobile_prev_button block', '<p>First</p>', '/t' + tid + tname, title);
else if (d == 1 && current != last) newPage('mobile_next_button block', '<p>Last</p>', '/t' + tid + 'p' + Number(perpage * last - perpage) + tname, title);
d += 1;
} while (last + 1 > c) {
if (c == current) newPage('mobile_next_button block pagi pagactif', c, 'javascript:void(0);', cen, 'currentPage');
else newPage('mobile_next_button block pagi', c, '/t' + tid + 'p' + Number(perpage * c - perpage) + tname, cen);
c += 1;
}
cen.scrollLeft = document.getElementById('currentPage').offsetLeft;
}
function newPage(classname, html, href, par, id) {var page = document.createElement('A'); page.className = classname, page.innerHTML = html, page.href = href, par.appendChild(page); if (id) page.id = id}
});
Similar topics
» Add pagination to the mobile version
» Mobile version: polls & pagination
» Updated : Add pagination to the mobile version
» Need Help With Adding pagination to the mobile version!
» Mobile version: polls & pagination
» Mobile version: polls & pagination
» Updated : Add pagination to the mobile version
» Need Help With Adding pagination to the mobile version!
» Mobile version: polls & pagination
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum