Skip to content
Snippets Groups Projects
Commit a2b1fa94 authored by David Siegfried's avatar David Siegfried
Browse files

rvv2: dont move headline in booking-plan, closes #1236

Closes #1236

Merge request studip/studip!751
parent 652c46de
No related branches found
No related tags found
No related merge requests found
...@@ -720,14 +720,14 @@ STUDIP.ready(function () { ...@@ -720,14 +720,14 @@ STUDIP.ready(function () {
} }
); );
jQuery('*.resource-plan[data-resources-fullcalendar="1"]').each(function () { jQuery('.resource-plan[data-resources-fullcalendar="1"]').each(function () {
STUDIP.loadChunk('fullcalendar').then(() => { STUDIP.loadChunk('fullcalendar').then(() => {
//Get the default date from the sessionStorage, if it is set //Get the default date from the sessionStorage, if it is set
//and no date is specified in the url. //and no date is specified in the url.
var use_session_date = true; let use_session_date = true;
var url_param_string = window.location.search; let url_param_string = window.location.search;
if (url_param_string) { if (url_param_string) {
var url_params = new URLSearchParams(url_param_string); let url_params = new URLSearchParams(url_param_string);
if (url_params.get('defaultDate')) { if (url_params.get('defaultDate')) {
use_session_date = false; use_session_date = false;
} }
...@@ -739,17 +739,17 @@ STUDIP.ready(function () { ...@@ -739,17 +739,17 @@ STUDIP.ready(function () {
{ {
loading: function (isLoading) { loading: function (isLoading) {
if (!isLoading) { if (!isLoading) {
var h = jQuery('section.studip-fullcalendar-header'); let h = jQuery('section.studip-fullcalendar-header');
if (h) { if (h) {
jQuery(h).removeClass('invisible'); jQuery(h).removeClass('invisible');
jQuery(h).insertAfter('.fc .fc-toolbar'); jQuery(h).insertBefore(this);
} }
} }
} }
} }
); );
} else { } else {
var config = { let config = {
studip_functions: { studip_functions: {
drop_event: drop_event:
STUDIP.Resources.dropEventInRoomGroupBookingPlan, STUDIP.Resources.dropEventInRoomGroupBookingPlan,
...@@ -758,16 +758,16 @@ STUDIP.ready(function () { ...@@ -758,16 +758,16 @@ STUDIP.ready(function () {
}, },
loading: function (isLoading) { loading: function (isLoading) {
if (!isLoading) { if (!isLoading) {
var h = jQuery('section.studip-fullcalendar-header'); let h = jQuery('section.studip-fullcalendar-header');
if (h) { if (h) {
jQuery(h).removeClass('invisible'); jQuery(h).removeClass('invisible');
jQuery(h).insertAfter('.fc .fc-toolbar'); jQuery(h).insertBefore(this);
} }
} }
} }
}; };
if (use_session_date) { if (use_session_date) {
var session_date_string = sessionStorage.getItem('booking_plan_date'); let session_date_string = sessionStorage.getItem('booking_plan_date');
if (session_date_string) { if (session_date_string) {
config.defaultDate = session_date_string; config.defaultDate = session_date_string;
} }
...@@ -789,8 +789,8 @@ STUDIP.ready(function () { ...@@ -789,8 +789,8 @@ STUDIP.ready(function () {
drop: function (event, ui_element) { drop: function (event, ui_element) {
event.preventDefault(); event.preventDefault();
var booking_plan_entry = event.target; let booking_plan_entry = event.target;
var new_background_colour = jQuery( let new_background_colour = jQuery(
ui_element.helper ui_element.helper
).css('background-color'); ).css('background-color');
...@@ -813,10 +813,10 @@ STUDIP.ready(function () { ...@@ -813,10 +813,10 @@ STUDIP.ready(function () {
); );
} }
}); });
var h = jQuery('section.studip-fullcalendar-header').clone(); let h = jQuery('section.studip-fullcalendar-header').clone();
if (h) { if (h) {
jQuery(h).removeClass('invisible'); jQuery(h).removeClass('invisible');
jQuery(h).insertAfter('.fc .fc-toolbar'); jQuery(h).insertBefore(this);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment