2017-05-05 17:17:39 -06:00
|
|
|
function setupTooltips() {
|
|
|
|
$('[data-toggle="tooltip"]').tooltip({
|
|
|
|
trigger: "click hover focus"
|
|
|
|
});
|
|
|
|
}
|
2017-04-24 17:13:08 -06:00
|
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
/* Fade out alerts */
|
|
|
|
$(".alert .close").click(function (e) {
|
|
|
|
$(this).parent().fadeOut('slow');
|
|
|
|
});
|
2017-05-05 17:17:39 -06:00
|
|
|
|
|
|
|
/* Activate tooltips */
|
|
|
|
setupTooltips();
|
2017-04-24 17:13:08 -06:00
|
|
|
});
|