-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Tag inheritance now supports multi-level inheritance with easy invocation of the base class implementation using this.base(...) or this.baseApply(arguments): e.g. { baseTag: "for", onAfterLink: function() { ... this.baseApply(arguments); } ... } Similarly for callbacks declared declaratively on tags: e.g. {{for items onAfterLink=~myHelper onUpdate=~dbg}}... function myHelper() { ... this.baseApply(arguments); } - Many new unit tests added for the above feature. - Some small additional bug fixes.
- Loading branch information
1 parent
19b74f4
commit c0710e0
Showing
10 changed files
with
283 additions
and
327 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.