1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-25 09:18:34 +00:00
Sonarr/UI/Shared/NotificationCollection.js
kay.one 769331d45d updated jshint to 2.1.3
single quotes
2013-06-21 23:24:24 -07:00

11 lines
243 B
JavaScript

'use strict';
define(['app', 'Shared/NotificationModel'], function () {
var notificationCollection = Backbone.Collection.extend({
model: NzbDrone.Shared.NotificationModel
});
return new notificationCollection();
});