Instantly share code, notes, and snippets.

Embed
What would you like to do?
import Ember from 'ember';
import Router from 'reef/router';
export default {
name: 'init-onepercent',
before: 'store',
initialize: function(container, app){
Ember.run.next(function() {
var app = container.lookup('application:main')
Router.map(function() {
this.resource('about');
this.resource('contact');
});
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment