Sha256: 78f4285462511d10c5004cd395dcbafa828d879862313dd2a4bc68a56a316a2f
Contents?: true
Size: 576 Bytes
Versions: 9
Compression:
Stored size: 576 Bytes
Contents
pageflow.internalLinks.ListEmbeddedView = Backbone.Marionette.View.extend({ render: function() { this.subview(new pageflow.CollectionView({ el: this.$el.find('ul'), collection: this.model.internalLinksList(), itemViewConstructor: pageflow.internalLinks.ListItemEmbeddedView, itemViewOptions: { page: this.model.page } })); this.listenTo(this.model.page.pageLinks(), 'add remove', function() { this.refreshScroller(); }); this.refreshScroller(); return this; }, refreshScroller: function() { } });
Version data entries
9 entries across 9 versions & 1 rubygems