Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jordansaints/a4c0399715c18ac45fc87697ac3a18da to your computer and use it in GitHub Desktop.
Save jordansaints/a4c0399715c18ac45fc87697ac3a18da to your computer and use it in GitHub Desktop.
aria-pressed
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
aria: false,
actions: {
toggleAria() {
this.set('aria', !this.get('aria'));
}
}
});
<h1>Welcome to {{appName}}</h1>
<button type="button" aria-pressed="{{if aria "true" "false"}}" {{action "toggleAria"}}>
some text
</button>
<button type="button" aria-pressed={{aria}} {{action "toggleAria"}}>
some text
</button>
{{aria}}
import Ember from 'ember';
export default function destroyApp(application) {
Ember.run(application, 'destroy');
}
import Resolver from '../../resolver';
import config from '../../config/environment';
const resolver = Resolver.create();
resolver.namespace = {
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix
};
export default resolver;
import Ember from 'ember';
import Application from '../../app';
import config from '../../config/environment';
const { run } = Ember;
const assign = Ember.assign || Ember.merge;
export default function startApp(attrs) {
let application;
let attributes = assign({rootElement: "#test-root"}, config.APP);
attributes = assign(attributes, attrs); // use defaults, but you can override;
run(() => {
application = Application.create(attributes);
application.setupForTesting();
application.injectTestHelpers();
});
return application;
}
import resolver from './helpers/resolver';
import {
setResolver
} from 'ember-qunit';
setResolver(resolver);
{
"version": "0.4.16",
"EmberENV": {
"FEATURES": {}
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.9.0",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.1.0/ember-data.js",
"ember-template-compiler": "2.9.0"
},
"options": {
"enable-testing": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment