Merge pull request #20 from xuio/master
Fix universeAsObject is not a function
This commit is contained in:
commit
faed129329
1 changed files with 3 additions and 3 deletions
|
@ -71,7 +71,7 @@ function DMXWeb() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
res.json({"state": dmx.universeAsObject(req.params.universe)})
|
res.json({"state": dmx.universeToObject(req.params.universe)})
|
||||||
})
|
})
|
||||||
|
|
||||||
app.post('/state/:universe', function(req, res) {
|
app.post('/state/:universe', function(req, res) {
|
||||||
|
@ -81,7 +81,7 @@ function DMXWeb() {
|
||||||
}
|
}
|
||||||
|
|
||||||
dmx.update(req.params.universe, req.body)
|
dmx.update(req.params.universe, req.body)
|
||||||
res.json({"state": dmx.universeAsObject(req.params.universe)})
|
res.json({"state": dmx.universeToObject(req.params.universe)})
|
||||||
})
|
})
|
||||||
|
|
||||||
app.post('/animation/:universe', function(req, res) {
|
app.post('/animation/:universe', function(req, res) {
|
||||||
|
@ -89,7 +89,7 @@ function DMXWeb() {
|
||||||
var universe = dmx.universes[req.params.universe]
|
var universe = dmx.universes[req.params.universe]
|
||||||
|
|
||||||
// preserve old states
|
// preserve old states
|
||||||
var old = dmx.universeAsObject(req.params.universe)
|
var old = dmx.universeToObject(req.params.universe)
|
||||||
|
|
||||||
var animation = new A()
|
var animation = new A()
|
||||||
for(var step in req.body) {
|
for(var step in req.body) {
|
||||||
|
|
Loading…
Reference in a new issue