Tobias Bosch
Tobias Bosch
IE8 does not support event capturing, and `blur` does not bubble. Using `focusout` would help IE8 ...
Reproduction: 1. Checkout https://github.com/angular/templating/tree/18411a1729b1d896593a29c9c11409f0ea6bf2bd 2. In annotations#L37 add the line `assert(obj).is(assert.string, Object)` 3. run `karma start`
E.g. the following code would report a type error: ``` static assert(obj) { assert(obj).is(assert.structureOf({ createRootView: Function })); } ``` The real problem was the typo: It needs to be `assert.structure`...
``` var res:ArrayOfClass = []; ```
For recursive data structure `@InjectParent` would allow to get hold of the parent instance in a nice way.
Sencha Touch does not provide a "go back" feature right now. We could implement this on our own by saving the active Items after every $eval, and restoring them when...
See the plain sencha touch list widget.
E.g. ``` expect(new DateTime(1)).toHaveSameProps(new DateTime(1)) ``` fails. In this case we could work around it via `toEquals`, but that does not work any more when comparing nested structures (which is...