forked from openlp/openlp
Fixed bug #1038694 'Change in service order not reflected in stage view'
bzr-revno: 2076 Fixes: https://launchpad.net/bugs/1038694
This commit is contained in:
commit
89f3323f61
@ -139,8 +139,10 @@ window.OpenLP = {
|
||||
"/api/poll",
|
||||
function (data, status) {
|
||||
OpenLP.updateClock(data);
|
||||
if (OpenLP.currentItem != data.results.item) {
|
||||
if (OpenLP.currentItem != data.results.item ||
|
||||
OpenLP.currentService != data.results.service) {
|
||||
OpenLP.currentItem = data.results.item;
|
||||
OpenLP.currentService = data.results.service;
|
||||
OpenLP.loadSlides();
|
||||
}
|
||||
else if (OpenLP.currentSlide != data.results.slide) {
|
||||
|
Loading…
Reference in New Issue
Block a user