You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TaskFloor/static/js/app.js

15 lines
323 B
JavaScript

function setupTooltips() {
$('[data-toggle="tooltip"]').tooltip({
trigger: "click hover focus"
});
}
$(document).ready(function () {
/* Fade out alerts */
$(".alert .close").click(function (e) {
$(this).parent().fadeOut('slow');
});
/* Activate tooltips */
setupTooltips();
});