Allow Mood Cube to record states other than the current one.

This commit is contained in:
Bob Florian
2015-09-11 07:01:35 -04:00
parent 189bec58db
commit 2ee1b26a7f

View File

@@ -79,12 +79,9 @@ def scenePage(params=[:]) {
href "devicePage", title: "Show Device States", params: [sceneId:sceneId], description: "", state: sceneIsDefined(sceneId) ? "complete" : "incomplete" href "devicePage", title: "Show Device States", params: [sceneId:sceneId], description: "", state: sceneIsDefined(sceneId) ? "complete" : "incomplete"
} }
if (sceneId == currentSceneId) { section {
section { href "saveStatesPage", title: "Record Current Device States", params: [sceneId:sceneId], description: ""
href "saveStatesPage", title: "Record Current Device States", params: [sceneId:sceneId], description: "" }
}
}
} }
} }