From c65e9fc5f8a3e9128951c14ad3c6ac9716d01d9c Mon Sep 17 00:00:00 2001 From: Henri Bergius Date: Fri, 1 Dec 2017 19:51:13 +0100 Subject: [PATCH] Don't stop the rotation here --- infodisplay/infodisplay.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/infodisplay/infodisplay.js b/infodisplay/infodisplay.js index 223c165..0f252d4 100644 --- a/infodisplay/infodisplay.js +++ b/infodisplay/infodisplay.js @@ -56,6 +56,9 @@ function DisplayParticipant(broker, role, defaultUrls, timer) { // Already open! next.id = 'current'; current.id = 'next'; + timeout = setTimeout(() => { + participant.send('open', getRotationUrl(urls, indata)); + }, timer); callback('opened', null, next.getAttribute('src')); return; }