1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-27 23:06:29 -04:00
Files
Sonarr/UI/System/About/AboutView.js
T
2013-09-30 22:30:02 -07:00

15 lines
338 B
JavaScript

'use strict';
define(
[
'marionette',
'System/StatusModel'
], function (Marionette, StatusModel) {
return Marionette.ItemView.extend({
template: 'System/About/AboutViewTemplate',
initialize: function () {
this.model = StatusModel;
}
});
});