mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-19 12:58:29 +00:00
16 lines
No EOL
439 B
JavaScript
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
|
|
});
|
|
}
|
|
|
|
}); |