// js/modules/controls.js // Module reference argument, assigned at the bottom (function (Option) { Option.Model = Backbone.Model.extend({ status: '' }); Option.List = Backbone.Collection.extend({ model: Option.Model }); Option.View = Backbone.View.extend({ }); })(app.module("option"));