NewsBlur/media/js/newsblur/views/story_sideoptions_view.js

16 lines
439 B
JavaScript
Raw Normal View History

2013-08-08 17:35:26 -07:00
NEWSBLUR.Views.StorySideoptionsView = Backbone.View.extend({
initialize: function() {
this.save_view = new NEWSBLUR.Views.StorySaveView({
model: this.model,
el: this.el,
sideoptions_view: this
});
this.share_view = new NEWSBLUR.Views.StoryShareView({
model: this.model,
el: this.el,
sideoptions_view: this
});
}
});