Skip to content

Instantly share code, notes, and snippets.

@spiegela
Created May 27, 2014 23:25
Show Gist options
  • Select an option

  • Save spiegela/1fd8b3325ef7cbc0a63c to your computer and use it in GitHub Desktop.

Select an option

Save spiegela/1fd8b3325ef7cbc0a63c to your computer and use it in GitHub Desktop.
Navigation Controller Step 3
// in app/controllers/navigation.js
var NavigationController = Ember.ArrayController.extend({
content: Ember.A([
Ember.Object.create({title: "About", location: 'about', active: null}),
Ember.Object.create({title: "Projects", location: 'projects', active: null})
]),
title: "Almighty Machine"
});
export default NavigationController;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment