1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Shared/Footer/View.js

16 lines
427 B
JavaScript
Raw Normal View History

2013-06-15 07:02:40 +03:00
"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();
2013-06-16 00:42:30 +03:00
this.model.set('version', NzbDrone.Constants.Version);
2013-06-15 07:02:40 +03:00
}
});
return new NzbDrone.Shared.Footer.View();
});