diff options
author | Michael Scherle | 2017-03-22 17:16:57 +0100 |
---|---|---|
committer | Michael Scherle | 2017-03-22 17:16:57 +0100 |
commit | 70bf9cfdbb93ac0c770185934a4ccf91b46c8ae5 (patch) | |
tree | c85fac061552b8b39e82e0cba479533835fbb779 /modules-available/locationinfo/frontend | |
parent | Backend credentials translation added. Bugfix: Checkboxes instead of bs switc... (diff) | |
download | slx-admin-70bf9cfdbb93ac0c770185934a4ccf91b46c8ae5.tar.gz slx-admin-70bf9cfdbb93ac0c770185934a4ccf91b46c8ae5.tar.xz slx-admin-70bf9cfdbb93ac0c770185934a4ccf91b46c8ae5.zip |
frontend fixed scrolling
Diffstat (limited to 'modules-available/locationinfo/frontend')
-rwxr-xr-x | modules-available/locationinfo/frontend/doorsign.html | 7 | ||||
-rwxr-xr-x | modules-available/locationinfo/frontend/jquery-week-calendar/jquery.weekcalendar.js | 8 |
2 files changed, 9 insertions, 6 deletions
diff --git a/modules-available/locationinfo/frontend/doorsign.html b/modules-available/locationinfo/frontend/doorsign.html index cd800283..70d29823 100755 --- a/modules-available/locationinfo/frontend/doorsign.html +++ b/modules-available/locationinfo/frontend/doorsign.html @@ -933,15 +933,13 @@ optional: clientHeight = clientHeight - document.getElementById('header_' + room.id).clientHeight
- document.getElementsByClassName("wc-time-column-header")[0].clientHeight -2;
- if (roomsToshow > 1) {
- clientHeight -= 5;
- }
+
if (room.config.mode == 1 && room.config.vertical) {
clientHeight = clientHeight * (room.config.scale / 100);
clientHeight -= 22;
}
-
+ clientHeight -=5;
var height = clientHeight / (room.openTimes * cal.weekCalendar("option", "timeslotsPerHour"));
@@ -956,6 +954,7 @@ optional: cal.weekCalendar("updateFreeBusy", room.openingTimesCalendar);
}
cal.weekCalendar("resizeCalendar");
+ cal.weekCalendar("scrollToHour");
}
// used for countdown
diff --git a/modules-available/locationinfo/frontend/jquery-week-calendar/jquery.weekcalendar.js b/modules-available/locationinfo/frontend/jquery-week-calendar/jquery.weekcalendar.js index 808939f3..f6404ea3 100755 --- a/modules-available/locationinfo/frontend/jquery-week-calendar/jquery.weekcalendar.js +++ b/modules-available/locationinfo/frontend/jquery-week-calendar/jquery.weekcalendar.js @@ -323,9 +323,13 @@ function MyDate() { this._loadCalEvents(this.element.data('startDate')); }, - resizeCalendar:function(){ + resizeCalendar:function(){ this._resizeCalendar(); - }, + }, + scrollToHour:function(){ + console.log("scroll"); + this._scrollToHour(new MyDate(), false); + }, /* * Clear all events currently loaded into the calendar */ |