Commit b2c11f5e authored by Michael Nelson's avatar Michael Nelson

Updated comment including link to keyed-ref issue.

parent a5e85675
...@@ -30,11 +30,12 @@ get '/:groupName', (page, model, {groupName}) -> ...@@ -30,11 +30,12 @@ get '/:groupName', (page, model, {groupName}) ->
.where('group').equals(groupName) .where('group').equals(groupName)
.where('completed').notEquals(true) .where('completed').notEquals(true)
#model.set '_filter', 'all' # model.set '_filter', 'all'
# model.ref '_list.shown', '_list', '_filter' # model.ref '_list.shown', '_list', '_filter'
# Since a recent commit, the above will result in # XXX 2012-12-04 Calling .get on keyed ref returns getter fn.
# model.get('_list.shown') returning: # We used to use the above keyed ref on _list, but when
# function getter(data, pathToRef, rest, refEmitter, prevRests) {..} # using derby master, it results in
# https://github.com/codeparty/derby/issues/179
model.ref '_list.shown', '_list.all' model.ref '_list.shown', '_list.all'
page.render() page.render()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment