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

15 lines
427 B
JavaScript
Raw Normal View History

2013-06-15 07:02:40 +03:00
"use strict";
define(['app',
2013-06-18 03:49:48 +03:00
'Shared/Footer/Model'], function (App, FooterModel) {
return Backbone.Marionette.ItemView.extend({
2013-06-15 07:02:40 +03:00
template: 'Shared/Footer/Template',
initialize: function () {
2013-06-18 03:49:48 +03:00
this.model = new FooterModel();
2013-06-16 00:42:30 +03:00
this.model.set('version', NzbDrone.Constants.Version);
2013-06-16 01:18:41 +03:00
this.model.set('buildDate', NzbDrone.Constants.BuildDate);
2013-06-15 07:02:40 +03:00
}
});
});