Skip to content

Instantly share code, notes, and snippets.

@ppcano
Last active June 17, 2016 13:46
Show Gist options
  • Save ppcano/9c1ce0f8a218bc483ac5be479263b482 to your computer and use it in GitHub Desktop.
Save ppcano/9c1ce0f8a218bc483ac5be479263b482 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
import Ember from 'ember';
export default Ember.Route.extend({
actions: {
addToOutlet: function(name) {
console.log('--> render outlet ' +name);
this.render(name, {
into: 'application',
outlet: 'modal'
});
},
removeOutlet: function() {
console.log(' disconnecting outlet');
this.disconnectOutlet({
outlet: 'modal',
parentView: 'application'
});
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<button {{action 'addToOutlet' 'option1'}}>
Render 1
</button>
<br/><br/>
<button {{action 'removeOutlet'}}>
Disconnect outlet
</button>
<br/><br/>
<button {{action 'addToOutlet' 'option2'}}>
Render 2
</button>
<br>
<br>
{{outlet 'modal'}}
{
"version": "0.9.2",
"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.6.0",
"ember-data": "2.6.0",
"ember-template-compiler": "2.6.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment