toddself

Results 30 comments of toddself

@robwierzbowski The work around is quite a pain. You'll need to load an iFrame from your HTTPS site that you want to communicate with then use postMessage to handle the...

The issue is that you cannot make a cross domain request via https regardless of what protocol the original page is served in IE 8. > On Dec 18, 2014,...

so i just ran into this as well! frequently, when emitting an error i'll add a bunch of values to the log line to provide context for the error, but...

We could also use the create-class shim...

Also these require a ton of assets to be generated and served from an art perspective.

Off the top of my head it looks like something that shouldn't be running on the server is running on the serve hence the document & window issues. Are you...

Should we have more than one maintainer listed I think in case there are issues with the maintainer listed? I like the examples section since it helps clarify the course...

The way we've resolved this in our app is that all renders are sync -- if we need data from an async source in order to do a render, we...

> in many cases you don't know which data to fetch before render because the route/render-path defines which data will be required Both of the examples provided you have the...

I should state I'm not against the concept here -- there are already patterns that exist within choo that prevent us from having to deal with Promises (or async/await) directly...