in ui/js/app.js [11:20]
Metis.metisButton = function () {
$.each($button, function () {
$(this).popover({
placement: 'bottom',
title: this.innerHTML,
content: this.outerHTML,
trigger: Metis.isTouchDevice ? 'touchstart' : 'hover'
});
});
};