Eric Webster
Results
2
issues of
Eric Webster
I have a shared module called `foo` that I include in my project's node_modules directory via npm link. In the `foo` module, I have a `require('react')` statement where 'react' is...
I have this: ``` js App = Ember.Application.create({ Socket: EmberSockets.extend({ host: window.location.hostname, port: window.location.port, secure: window.location.protocol === 'https:', controllers: ['patientsIndex', 'patient'], autoConnect: true }) }); ``` Each controller has a...