Alden Daniels
Alden Daniels
Another possibility: 1. Use `browserify --list` to get a list of all files 2. Create a separate bundle for each file 3. For each bundle, use browserify's `external()` option to...
@ded - suggestion: make promises an optional plugin that plays nice with any spec-complying promise implementation. Something like ``` javascript var BPromise = require('bluebird'); reqwest.promiseLib(BPromise); request.(...).then(); ``` Advantages: 1. The...
Same issue here. Can't make cross-domain request on IE
Hi @TheLudd - thanks for the tip. I tried following similar instructions prior to positing this without success in IE8, but I might have missed something. Anyhow, I've switched to...
@saynomoo - nice work. Per my comment in #1592, will this ensure that the binding context of the inject child nodes remains that of the parent component? I didn't see...
@saynomoo - in case it proves useful - take a look at [this jsbin](http://jsbin.com/boxabebiqu/1/edit?js,output) that @VoiceOfWisdom put together in #1592 illustrating one approach to using the parent binding context.
[Ember's #each HandleBars helper](http://emberjs.com/guides/templates/displaying-a-list-of-items/) supports something similar: ``` html {{#each person in people}} ... {{/each}} ```
Also hitting this - and another simple repro case: https://codepen.io/anon/pen/NEQbjM?editors=1112 Here you can see that the native `focusout` event does fire, but there's no corresponding synthetic `onBlur` event.
FWIW, I'm working around this limitation like this: ``` javascript var ViewModel = function() { this.field = ''; this.getObservable = function(fieldName) { return ko.getObservable(this, fieldName); }.bind(this); ko.track(); } ``` ```...