aboutsummaryrefslogtreecommitdiffstats
path: root/www/js/mobile_config.js
blob: 6d0f10a72845156d3e78e87b83526706eeabe28c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
$(document).bind("mobileinit", function(){
    $.mobile.hashListeningEnabled = false;
    $.mobile.ajaxEnabled = false;
    $.mobile.linkBindingEnabled = false;
    $.mobile.pushStateEnabled = false;
    $.mobile.ignoreContentEnabled = true;
    $.mobile.defaultPageTransition = 'slide';
    $.mobile.buttonMarkup.hoverDelay = 0;
    // turn of scrollTop support as that stops annoying post
    // transition 1 px jumps on iOS
    $.support.scrollTop = 0;
});