Is it possible to turn off the hover-over help balloons in Chilipeppr? I’m using a touch screen laptop and the balloons cover buttons and dont time-out
You could override the bootstrap method that turns them on. Just set $().popover = function() {}; as a macro.
Thanks for the suggestion. It might be beyond my current capability ;^) but I’ll give it a shot…
You would just type that into the Macro widget and hit run. If it works you could set it as your startup script and presto. All set.
Here’s a macro that you can set as your startup macro to remove all popovers from buttons. If you need other popovers turned off let me know.
// Destroy popovers 5 secs after load
setTimeout(function() {
$(‘button’).popover(‘destroy’);
$(‘button’).popover({trigger:‘manual’});
chilipeppr.publish("/com-chilipeppr-elem-flashmsg/flashmsg", “Startup macro”, “Turned off popovers”);
}, 5000);
Thanks John! I’ll give this a shot…
Worked for me, I need to get into this stuff more, thanks.