meteorhacks / meteord

MeteorD - Docker Runtime for Meteor Apps for Production Deployments
https://registry.hub.docker.com/u/meteorhacks/meteord/
MIT License
439 stars 371 forks source link

App not loading properly in IE #48

Closed skwasha closed 9 years ago

skwasha commented 9 years ago

First - I can't say for sure this is an issue with meteord. However, if I run the app without having dockerized it with meteord, it loads up in IE just fine. When I run the dockerized version, it loads but does not run the app. So, I just get a blank page. Anyone had any similar experiences?

skwasha commented 9 years ago

So, the issue turned out to be IE and Collection Behaviours related. For some reason, the built version of the App was erroring out on a call to collection.attachBehaviour(name, options). This was not occurring in a locally run version. Switching out that call for CollectionBehaviours.attach(collection, name, options) solved the problem.