mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
16 lines
421 B
JavaScript
16 lines
421 B
JavaScript
"use strict";
|
|
define(['app',
|
|
'Shared/Footer/Model'], function () {
|
|
NzbDrone.Shared.Footer.View = Backbone.Marionette.ItemView.extend({
|
|
|
|
template: 'Shared/Footer/Template',
|
|
|
|
initialize: function () {
|
|
this.model = new NzbDrone.Shared.Footer.Model();
|
|
this.model.version = NzbDrone.Constants.Version;
|
|
}
|
|
});
|
|
|
|
return new NzbDrone.Shared.Footer.View();
|
|
});
|