Skip to content

Instantly share code, notes, and snippets.

View olivia's full-sized avatar
🐢
I am slow

Olivia olivia

🐢
I am slow
View GitHub Profile
[
{
"backcolor": "#b0b0b0",
"name": "M65 SA Template"
},
[
{
"c": "#f6d9d5",
"t": "#363636",
"p": "SA",
@olivia
olivia / application.controller.js
Last active October 22, 2015 16:19 — forked from corrspt/application.controller.js
EmberInflector Bug
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
plural: Ember.computed(function() {
return Ember.Inflector.inflector.pluralize("gas");
}),
singular: Ember.computed(function() {
return Ember.Inflector.inflector.singularize("gases");
}),