1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-15 03:17:38 +01:00

Bugfix to Bug #129 - Public Announcement List Page (js)

This commit is contained in:
PupperWoff 2017-07-18 00:19:28 +02:00
parent 50507a9714
commit 732b5dcccf

View File

@ -1,7 +1,7 @@
var announcementlist_init = function(token, inMod) {
inMod = !inMod;
$.getJSON(inMod ? ("?/announcements.json/"+token) : ("/" + token), function(json) {
$.getJSON(inMod ? ("?/announcements.json/"+token) : (token), function(json) {
var tr;
var thead = $("<thead/>");