Sha256: 288fe305be96c787d3c7d70013228ef68885717546f99bcc8c990259c5df42dc
Contents?: true
Size: 881 Bytes
Versions: 19
Compression:
Stored size: 881 Bytes
Contents
(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; if (ELA.Views == null) { ELA.Views = {}; } ELA.Views.BaseAside = (function(superClass) { extend(BaseAside, superClass); BaseAside.prototype.tagName = 'aside'; BaseAside.prototype.className = function() { return this.asideName + " right"; }; function BaseAside(options) { if (options == null) { options = {}; } this.asideName = options.name; BaseAside.__super__.constructor.apply(this, arguments); } return BaseAside; })(Backbone.Poised.View); }).call(this);
Version data entries
19 entries across 19 versions & 1 rubygems