Sha256: 335d92662bbed74ea404a383b5e2d0be83194105a25e4c7e722970db091a7f75
Contents?: true
Size: 791 Bytes
Versions: 36
Compression:
Stored size: 791 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; })(App.Models.Base); }).call(this); :ET
Version data entries
36 entries across 23 versions & 1 rubygems