mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-13 08:33:58 -07:00
15 lines
421 B
JavaScript
15 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();
|
|
});
|