mirror of https://github.com/lidarr/Lidarr
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();
|
|||
|
});
|