Files
yavsc/Yavsc/wwwroot/js/site.js
2017-06-14 12:28:08 +02:00

11 lines
254 B
JavaScript
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

+(function($) {
function notifClick(nid) {
if (nid > 0) { 
$.get('/api/dimiss/click/' + nid).done(function() {})
.fail(function() {})
.always(function() {});
}
}
})(jQuery);