Skip to content

Releases: canjs/can-view-scope

Updating can-stache-key

08 Aug 12:35
Compare
Choose a tag to compare

Add references scope if none for `getRefs`

01 Aug 20:15
Compare
Choose a tag to compare

If getRefs is called and would be returning undefined we add a references scope to the top scope and return that.

restoring dependencyChange/start on offValue

11 Jul 20:23
Compare
Choose a tag to compare

#76

Where showing and hiding an element like

<input type="text" value="{{val}}">

would break.

can-reflect

23 Jun 03:43
Compare
Choose a tag to compare
v3.2.0

3.2.0

{{this.prop}} works

07 Mar 19:37
Compare
Choose a tag to compare

Fixes #45. Allows {{this.prop}} to work.

Makes it so `..` skips past hidden contexts.

17 Feb 22:47
Compare
Choose a tag to compare

Fixes #43 which caused problems when there were hidden contexts such as:

{{#each items}}
  <some-component {^value}="../parentValue"/>
{{/each}}

In something like above, value was being set as parentValue on the hidden context that contains %index. This makes ../ properly skip that context.