| Age | Commit message (Collapse) | Author |
|
Explained why you'd want to manually bootstrap, added contrasting
example for automatic vs manual methods.
|
|
|
|
|
|
- API forms (ng:model + controller, form + controller)
- fix some broken links
- ng:change, ng:model-instant
|
|
|
|
|
|
|
|
|
|
Change introduced by me in 8611ebe6 results in considerable inefficiencies when the compiler
and linker is used from within a widget, in which case, we call $digest unnecessary since it
will be called by the $apply which called the directive/widget in the first place.
There are only two places when the extra $digest call can be useful - when manually bootstrapping
the app or in tests. However even in tests this behavior can result in unwanted results (especially
when ng:controller is involved). So it is better to leave it for the developer to call $digest
when it is really needed.
|
|
it's not useful any more and it only makes the docs look ugly
|
|
|
|
|
|
|