NewsBlur/media/js/newsblur/views/story_sideoptions_view.js
2013-08-08 17:35:32 -07:00

16 lines
No EOL
439 B
JavaScript

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
});
}
});