yavsc/src/Yavsc/wwwroot/js/site.js
Paul Schneider 9bbbb22860 a layout
2023-03-27 22:45:16 +01:00

15 lines
486 B
JavaScript

// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
// for details on configuring this project to bundle and minify static web assets.
// Write your JavaScript code.
var notifClick =
function(nid) {
if (nid > 0) {
$.get('/api/dimiss/click/' + nid);
}
};
var setUiCult = function(lngspec) {
document.cookie = 'ASPNET_CULTURE=c=' + lngspec + '|uic=' + lngspec;
location.reload();
};