Skip to content

Instantly share code, notes, and snippets.

@cibernox
Created May 3, 2017 13:28
Show Gist options
  • Save cibernox/47ac72249748d0b59bacb8f144869cbe to your computer and use it in GitHub Desktop.
Save cibernox/47ac72249748d0b59bacb8f144869cbe to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
applicationController: Ember.inject.controller('application')
});
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: 'none',
rootURL: config.rootURL
});
Router.map(function() {
this.route('other-route');
});
export default Router;
import Ember from 'ember';
export default Ember.Route.extend({
});
<h1>Demo of injection error</h1>
<br>
{{#link-to 'other-route'}}Other route{{/link-to}}
<br>
{{outlet}}
<br>
<br>
<h1>I'm on the other route</h1>
You are in {{applicationController.currentPath}}
{
"version": "0.12.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.12.0",
"ember-template-compiler": "2.12.0",
"ember-testing": "2.12.0"
},
"addons": {
"ember-data": "2.12.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment