mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
10 lines
No EOL
214 B
JavaScript
10 lines
No EOL
214 B
JavaScript
NEWSBLUR.Views.Feed = Backbone.View.extend({
|
|
|
|
className: 'NB-feed',
|
|
|
|
render: function() {
|
|
$(this.el).html(this.make('div', {}, this.model.get('feed_title')));
|
|
return this;
|
|
}
|
|
|
|
}); |