Sonarr/UI/Shared/NotificationView.js

43 lines
944 B
JavaScript
Raw Normal View History

"use strict";
define(['app', 'Shared/NotificationCollection'], function (app, notificationCollection) {
var notificationItemView = Backbone.Marionette.ItemView.extend({
template: 'Shared/NotificationTemplate',
events: {
'click .x-close': 'kill'
},
kill: function () {
var self = this;
$.Deferred(function () {
self.$el.slideUp('slow');
}).done(function () {
self.model.destroy();
});
}
});
var collectionView = Backbone.Marionette.CollectionView.extend({
itemView: notificationItemView,
initialize: function () {
this.collection = notificationCollection;
2013-02-15 08:18:42 +00:00
}
});
2013-02-15 08:18:42 +00:00
NzbDrone.addInitializer(function () {
2013-02-16 00:49:25 +00:00
console.log('initializing notification view');
NzbDrone.notificationRegion.show(new collectionView());
});
});
2013-02-01 03:15:19 +00:00