Skip to content

Instantly share code, notes, and snippets.

@walter
Created August 20, 2014 01:54
Show Gist options
  • Select an option

  • Save walter/f814b26a8a3bcc6466e5 to your computer and use it in GitHub Desktop.

Select an option

Save walter/f814b26a8a3bcc6466e5 to your computer and use it in GitHub Desktop.
Ember address lookup snippet
// in app/controllers/application.js
import Ember from 'ember';
export default Ember.Controller.extend({
queryParams: ['address'],
address: null
});
// in app/controllers/index.js
import Ember from 'ember';
export default Ember.Controller.extend({
needs: 'application',
address: Ember.computed.alias('controllers.application.address')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment