Sha256: 552db2216f084a44cc52f96218d6672248a805e6986e9ef40b122eef755fc087
Contents?: true
Size: 744 Bytes
Versions: 60
Compression:
Stored size: 744 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.Views.Layouts.User = (function(superClass) { extend(User, superClass); function User(opts) { if (opts == null) { opts = {}; } User.__super__.constructor.call(this, opts); } User.prototype.getCurrentUserId = function() { return parseInt($('#sign_out_user').data('user-id')); }; return User; })(App.Views.Base); }).call(this); :ET
Version data entries
60 entries across 27 versions & 1 rubygems