mirror of https://github.com/lidarr/Lidarr
17 lines
498 B
JavaScript
17 lines
498 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.set('version', NzbDrone.Constants.Version);
|
|
this.model.set('buildDate', NzbDrone.Constants.BuildDate);
|
|
}
|
|
});
|
|
|
|
return new NzbDrone.Shared.Footer.View();
|
|
});
|