Twitter Bootstrap Popover/Tooltip Bug with Mobile?

后端 未结 6 1232
执念已碎
执念已碎 2021-02-19 05:24

I am working with Twitter Bootstrap and ran into something I could not fix when testing on iPad and iPhone. On mobile (at least those devices) you need to click to engage the t

6条回答
  •  天命终不由人
    2021-02-19 06:00

    Main concept is that make popover manually on mobile device

    $(document).ready(function() {
        if ('ontouchstart' in window) {
            $('[data-toggle="popover"]').popover({
                'trigger': 'manual'
            });            
        }
    });
    

提交回复
热议问题