-
Notifications
You must be signed in to change notification settings - Fork 172
From 0.6 to 0.7
tbranyen edited this page Jan 5, 2013
·
1 revision
There have been a few small "breaking" changes that have been made to create a more unified and sane API. You should have to change relatively little to gain the benefits from this release. Please ask all questions in the comment area below and not open new issues.
- All
render
calls that previously took a function as a callback argument, should now be changed torender().done
orrender().then
check out http://api.jquery.com/category/deferred-object/ for more information. - Inside the
LayoutManager.configure
object, change thepaths
Object toprefix
which is a single String property pointing to where your templates live. - The above change may cause you to change your
template
properties forLayouts
. - If you were using
swapLayout
you can patch it back in, but it's removed due to lack of use case.
Every other change should be compatible with your existing implementation.
Getting started
Usage
- Overview
- Configuration
- Basics
- Example usage
- Nested views
- Template rendering
- LayoutManager in Node.js
API reference
Migration guides
Legacy
How to contribute