Skip to content

Instantly share code, notes, and snippets.

@ZoeBijl
Last active September 6, 2019 14:52
Show Gist options
  • Save ZoeBijl/a9855502b0990fb7c618b9af23ca4e56 to your computer and use it in GitHub Desktop.
Save ZoeBijl/a9855502b0990fb7c618b9af23ca4e56 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<p>These <code>button</code>s don’t have the issue:</p>
<button>{{appName}}</button>
<button>
<div>{{appName}}</div>
</button>
<p>This <code>button</code> has the issue:</p>
<button>
<div>
{{appName}}
</div>
</button>
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment