toddself
toddself
> I believe you forgot to change showLoader somewhere I did! ```js if (!state.components[componentId]) { emit('get:component', componentId) showLoader = true } ``` > You are storing functions in the state...
I still posit you have everything you need at this point to do this without making the view load the data directly: > With your approach you need to declare...
Perhaps naïvely i just rely on npm to resolve this for me. we use nanobus in a lot of our friend end and since npm 3 > dedupes on install...
This code requires that any browser or node instance that doesn't support async be compiled using babel and the polyfill being included. Being that we still have support enabled for...
Also, check out my comments in #645 -- there are other ways to do this without needing to change how choo works
`Promise` still needs to be shimmed for IE 11 (so we'd likely also need to include a promises implementation in core).
hi! we just ran into this too with the [sbd](https://github.com/Tessmore/sbd) library. it is stripping out [`/lib/Match.js:isCaptialized`](https://github.com/Tessmore/sbd/blob/master/lib/Match.js#L73-L75), even though that function is called via `this` within the code. ``` 09:42:00 ~/src/sbd:master...
why `route` instead of `on`? (I like `on` since it's sort of like an event emitter -- we're going to trigger this function when this event happens. Its just that...
This looks like it's because of [line 19 in trie.js](https://github.com/yoshuawuyts/wayfarer/blob/master/trie.js#L19) ``` js // strip leading '/' and split routes const routes = route.replace(/^\//, '').split('/') ``` Perhaps we should keep the...
Bromote uses jsonpject under the hood to handle the remote loading of jsonp documents (anything requiring a callback parameter in the URL). This was specifically designed for the google maps...