bunti-node/js/modules/devices/option.js

14 lines
277 B
JavaScript
Raw Normal View History

// js/modules/controls.js
// Module reference argument, assigned at the bottom
(function (Option) {
2012-07-19 21:45:22 +00:00
Option.Model = Backbone.Model.extend({ });
Option.List = Backbone.Collection.extend({
model: Option.Model
});
})(app.module("option"));