Files
dss/static/js/app/models/user/userItem.js
2013-08-06 12:33:44 +01:00

26 lines
827 B
JavaScript
Executable File

// Generated by CoffeeScript 1.6.2
(function() {
var __hasProp = {}.hasOwnProperty,
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
define(['app.lib/backbone.dss.model'], function(DssModel) {
var UserItem, _ref;
UserItem = (function(_super) {
__extends(UserItem, _super);
function UserItem() {
_ref = UserItem.__super__.constructor.apply(this, arguments);
return _ref;
}
UserItem.prototype.urlRoot = com.podnoms.settings.urlRoot + "user/";
return UserItem;
})(DssModel);
return UserItem;
});
}).call(this);