This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).bind( "pageload", function(){ | |
// Check if the body tag wants fastclick buttons to be set up | |
var fast_click = $("body").jqmData("fastclick"); | |
if (fast_click != 'campusdetail') { | |
initFastButtons(); | |
} else { | |
// Do you actually need to do anything here? | |
// Try leaving it as-is and see if the fastbuttons are cached. | |
} | |
}); |