mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
16 lines
439 B
JavaScript
16 lines
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
|
||
|
});
|
||
|
}
|
||
|
|
||
|
});
|