diff options
author | Michael Scherle | 2017-04-03 22:59:38 +0200 |
---|---|---|
committer | Michael Scherle | 2017-04-03 22:59:38 +0200 |
commit | 8d39845a4fb7d3e5e07e41daf31d6292c2422ed4 (patch) | |
tree | 3a592fd2cca206e4d264dc66c12b49cd5eb76370 /modules-available/locationinfo/frontend | |
parent | added frontend documentation (diff) | |
download | slx-admin-8d39845a4fb7d3e5e07e41daf31d6292c2422ed4.tar.gz slx-admin-8d39845a4fb7d3e5e07e41daf31d6292c2422ed4.tar.xz slx-admin-8d39845a4fb7d3e5e07e41daf31d6292c2422ed4.zip |
frontend fixed switchtime not working
Diffstat (limited to 'modules-available/locationinfo/frontend')
-rwxr-xr-x | modules-available/locationinfo/frontend/doorsign.html | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/modules-available/locationinfo/frontend/doorsign.html b/modules-available/locationinfo/frontend/doorsign.html index 1aceb19d..6919d2aa 100755 --- a/modules-available/locationinfo/frontend/doorsign.html +++ b/modules-available/locationinfo/frontend/doorsign.html @@ -476,9 +476,9 @@ optional: }
// parameter validation
- if (room.config.switchtime == null || isNaN(room.config.switchtime) || room.config.switchtime > 120
- || room.config.switchtime < 1) {
- room.config.switchtime = 5;
+ if (room.config.switchtime == null || isNaN(room.config.switchtime) || room.config.switchtime > 120*1000
+ || room.config.switchtime < 1*1000) {
+ room.config.switchtime = 5*1000;
}
if (room.config.scale == null || isNaN(room.config.scale) || room.config.scale > 90 || room.config.scale < 10) {
room.config.scale = 50;
@@ -680,7 +680,7 @@ optional: for (var property in rooms) {
if (rooms[property].config.mode == 4) {
if (rooms[property].lastSwitchTime == null
- || rooms[property].lastSwitchTime + rooms[property].config.switchtime * 1000 < MyDate().getTime()) {
+ || rooms[property].lastSwitchTime + rooms[property].config.switchtime < MyDate().getTime()) {
switchLayout(rooms[property]);
@@ -689,7 +689,7 @@ optional: if (rooms[property].lastSwitchTime == null) {
rooms[property].lastSwitchTime = MyDate().getTime();
} else {
- rooms[property].lastSwitchTime = rooms[property].lastSwitchTime + rooms[property].config.switchtime * 1000;
+ rooms[property].lastSwitchTime = rooms[property].lastSwitchTime + rooms[property].config.switchtime;
}
}
@@ -1010,7 +1010,6 @@ optional: height = 30;
}
// Scale calendar font
- console.log(height);
if(height > 120){
cal.weekCalendar("option","textSize",28);
}
@@ -1428,7 +1427,6 @@ optional: */
function generateOffsetAndScale(room) {
-
var clientHeight = $(window).height();
if (roomsToshow == 4) {
clientHeight = clientHeight / 2;
@@ -1685,7 +1683,6 @@ optional: // scales calendar and room layout acordingly
$(window).resize(function () {
-
clearTimeout(resizeTimeout);
resizeTimeout = setTimeout(function () {
@@ -1794,7 +1791,7 @@ optional: function MoveProgressBar(roomId, time) {
var elem = document.getElementById("progressBar_" + roomId);
var width = 1;
- var id = setInterval(frame, time * 10);
+ var id = setInterval(frame, time /100);
function frame() {
if (width >= 100) {
|