Skip to content

Instantly share code, notes, and snippets.

@pudgecon
pudgecon / app.js
Created November 11, 2013 14:46
A Ember Cascade Selection Example
App = Ember.Application.create();
App.ApplicationAdapter = DS.FixtureAdapter.extend();
App.Province = DS.Model.extend({
name: DS.attr('string')
});
App.City = DS.Model.extend({
name: DS.attr('string'),