Files @ 717774b8a4a6
Branch filter:

Location: light9/light9/effecteval/effect.coffee

Drew Perttula
syncedgraph gets items() method for fetching an rdf list
Ignore-this: c97d4718ab1cede9c196464053c9ab47
model =
  code: ko.observable()
reconnectingWebSocket "ws://localhost:8070/effectData" + window.location.search, (msg) ->
  console.log('effectData ' + JSON.stringify(msg))
  # there's a shorter unpack thing
  writeBack = ko.computed ->
    console.log('sendback' ,{code: model.code()})
    
  model.code(msg.code)
  ko.applyBindings(model)