﻿// Tooltips für Module im Frontend

$(function () {
    InitTooltips();
});

function InitTooltips() {

    // Edit Module Icons
    $('.pEditHeader a').each(function () {
        $(this).tooltip();
    });

    // Kommentar löschen
    $('.pCommentDate a.lnkDelete').each(function () {
        $(this).tooltip();
    });
}

