Skip to content

Instantly share code, notes, and snippets.

@isramv
Created February 5, 2015 12:27
Show Gist options
  • Save isramv/70dd9972f96bde4ee76a to your computer and use it in GitHub Desktop.
Save isramv/70dd9972f96bde4ee76a to your computer and use it in GitHub Desktop.
Fixtures Example EmberJS
App.Person.reopenClass({
FIXTURES: [
{
id: 1,
name:'Israel Morales',
age: 30,
position: 'Web Developer',
gender:'Male',
},{
id: 2,
name:'Priscila Ramos',
age: 28,
position: 'Principal Cashier',
gender:'Female',
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment