Sha256: 6ec7aa7f6252e900ca4b7fca15805603da016bf6fafc8244bd65675879a66145
Contents?: true
Size: 790 Bytes
Versions: 15
Compression:
Stored size: 790 Bytes
Contents
I" (function() { var extend = 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; }, hasProp = {}.hasOwnProperty; App.Models.Room = (function(superClass) { extend(Room, superClass); Room.identity = "Room"; Room.resources = {}; Room.attributes = {}; Room.receivedSignal = function(signal, data) {}; Room.validate = []; function Room(data) { Room.__super__.constructor.call(this, data); } Room.prototype.receivedSignal = function(signal, data) {}; return Room; })(LocoModel.Base); }).call(this); :ET
Version data entries
15 entries across 15 versions & 1 rubygems