yavsc/src/Yavsc/wwwroot/js/site.js

15 lines
486 B
JavaScript
Raw Normal View History

2023-03-19 17:57:55 +00:00
// 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.
2017-10-04 23:53:47 +02:00
2023-03-19 17:57:55 +00:00
// Write your JavaScript code.
2023-03-27 22:45:16 +01:00
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();
};