Changes between Initial Version and Version 1 of Ticket #15847
- Timestamp:
- Aug 14, 2012, 1:30:30 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15847
-
Property
Milestone
changed from
tbd
to1.8.1
-
Property
Milestone
changed from
-
Ticket #15847 – Description
initial v1 1 1 The observe() method hangs off of the promise returned by store.query(), not the promise's resolved value, so in this code: 2 3 {{{#!js4 when(res = this.store.query(this.query),5 lang.hitch(this, function(items){6 ...7 if(res.observe){8 }}}9 10 res.observe is always null, and also in this code:11 2 12 3 {{{