Add pagination to the mobile version doesn't work Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
2 posters

    Add pagination to the mobile version doesn't work

    avatar
    betclever
    Forumember


    Posts : 209
    Reputation : 2
    Language : english

    Solved Add pagination to the mobile version doesn't work

    Post by betclever November 23rd 2014, 4:21 am

    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,


    Last edited by betclever on November 23rd 2014, 12:28 pm; edited 1 time in total
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Add pagination to the mobile version doesn't work

    Post by Ange Tuteur November 23rd 2014, 4:30 am

    Hello betclever,

    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}
    });
    avatar
    betclever
    Forumember


    Posts : 209
    Reputation : 2
    Language : english

    Solved Re: Add pagination to the mobile version doesn't work

    Post by betclever November 23rd 2014, 12:27 pm

    It works pefectly, thanks! Smile
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Add pagination to the mobile version doesn't work

    Post by Ange Tuteur November 23rd 2014, 12:32 pm

    You're welcome Add pagination to the mobile version doesn't work 1852325475

    Topic archived

    Have a great day. Very Happy