Recommend this page to a friend! |
Classes of Scott Arciszewski | > | CMS Airship | > | src/Cabin/Bridge/public/index.js | > | Download |
|
|
![]() |
$(document).ready(function() { $(".announce-dismiss").on('click', function() { var id = $(this).data('id'); $.post( $("#bridge_main_menu_left").data('linkprefix') + "announcement/dismiss", { "dismiss": id, "csrf_token": $("body").data('ajaxtoken') }, function (result) { if (result.status === 'OK') { $("#announce-" + id).remove(); var container = $("#announcements"); if (container.html().trim() === '') { container.html( "<em>" + container.data('noentries') + "</em>" ); } } } ) }); }); |