Get chosen doctor appointments as admin

This commit is contained in:
coolneng 2020-07-13 17:28:42 +02:00
parent d5ea8bec33
commit 646f97fa79
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,6 @@
$(document).ready(function() { $(document).ready(function() {
var queryString = window.location.search;
var calendar = $('#calendar').fullCalendar({ var calendar = $('#calendar').fullCalendar({
editable: true, editable: true,
@ -9,7 +10,8 @@
right: 'month,agendaWeek,agendaDay' right: 'month,agendaWeek,agendaDay'
}, },
events: "appointment_feed.php",
events: "appointment_feed.php" + queryString,
selectable: true, selectable: true,