Sha256: dcabae1bf647aa5cdad8d7048cd11934b26c8488e675207aaaafd8ff3b53ce35
Contents?: true
Size: 714 Bytes
Versions: 11
Compression:
Stored size: 714 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.ViewportView = (function(superClass) { extend(ViewportView, superClass); function ViewportView() { return ViewportView.__super__.constructor.apply(this, arguments); } ViewportView.prototype.className = 'view active'; return ViewportView; })(Backbone.Poised.View); }).call(this);
Version data entries
11 entries across 11 versions & 1 rubygems