Stop bootstrap tooltip on iPad

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
edwinet
User
Posts: 15

Stop bootstrap tooltip on iPad

Post by edwinet »

How can I stop using bootstrap tooltip on iPad, like when using an iPhone


Webmaster
User
Posts: 9430

Post by Webmaster »

ASP.NET Maker has a global javascript variable EW_IS_MOBILE. You can disable tooltips by adding the following codes (see lines marked with ***) in "aspxjs/ewx12.js":

// Init page
jQuery(function($) {
//...
//$("a.ewTooltipLink").each(ew_Tooltip); // Init tooltips
//
ew_InitIcons();
if (!EW_IS_MOBILE) { //***
$("a.ewTooltipLink").each(ew_Tooltip); // Init tooltips //***
ew_InitIcons(); //***
} //***


Post Reply