mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
15 lines
338 B
JavaScript
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;
|
|
}
|
|
});
|
|
});
|