2012-03-21 01:11:50 +00:00
|
|
|
(function($) {
|
|
|
|
window.Room = Backbone.Model.extend({});
|
2012-03-23 01:41:15 +00:00
|
|
|
window.Rooms = Backbone.Collection.extend({
|
|
|
|
model: Room,
|
|
|
|
url: '/resources/json/rooms.json'
|
|
|
|
});
|
2012-03-23 02:13:44 +00:00
|
|
|
window.Device = Backbone.Model.extend({});
|
|
|
|
window.Devices = Backbone.Collection.extend({
|
|
|
|
model: Device,
|
|
|
|
url: '/control/devices'
|
|
|
|
});
|
2012-03-21 01:11:50 +00:00
|
|
|
})(jQuery);
|