This commit is contained in:
Paul Schneider 2023-03-27 22:45:16 +01:00
commit 9bbbb22860
24 changed files with 75 additions and 1091 deletions

View file

@ -2,3 +2,14 @@
// 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();
};

View file

@ -1,11 +0,0 @@
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();
};