Sha256: 1230c3c7d9b52f5ba9ce5cef6451569a40bc4021970eda6e4a8a80a6f6fb1fa2
Contents?: true
Size: 979 Bytes
Versions: 30
Compression:
Stored size: 979 Bytes
Contents
(function() { Luca.containers.PanelView = Luca.core.Container.extend({ className: 'luca-ui-panel', initialize: function(options) { this.options = options != null ? options : {}; return Luca.core.Container.prototype.initialize.apply(this, arguments); }, afterLayout: function() { var contents; if (this.template) { contents = (Luca.templates || JST)[this.template](this); return this.$el.html(contents); } }, render: function() { return $(this.container).append(this.$el); }, afterRender: function() { var _ref, _this = this; if ((_ref = Luca.core.Container.prototype.afterRender) != null) { _ref.apply(this, arguments); } if (this.css) { console.log("Yes Yes Yall", this.css, this.$el); return _(this.css).each(function(value, property) { return _this.$el.css(property, value); }); } } }); }).call(this);
Version data entries
30 entries across 30 versions & 1 rubygems