mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 04:22:30 +01:00
Better require
This commit is contained in:
parent
23859a1c55
commit
279f8b5d73
@ -1,9 +1,9 @@
|
||||
"use strict";
|
||||
require(['app', 'Controller', 'RouteBinder'], function (app, controller, routeBinder) {
|
||||
require(['app', 'Controller', 'RouteBinder', 'Shared/Footer/View'], function (App, Controller, RouteBinder, FooterView) {
|
||||
|
||||
NzbDrone.Router = Backbone.Marionette.AppRouter.extend({
|
||||
|
||||
controller: controller,
|
||||
controller: Controller,
|
||||
appRoutes : {
|
||||
'' : 'series',
|
||||
'series' : 'series',
|
||||
@ -27,8 +27,8 @@ require(['app', 'Controller', 'RouteBinder'], function (app, controller, routeBi
|
||||
NzbDrone.Router = new NzbDrone.Router();
|
||||
Backbone.history.start({ pushState: true });
|
||||
|
||||
routeBinder.bind();
|
||||
NzbDrone.footerRegion.show(new NzbDrone.Shared.Footer.View());
|
||||
RouteBinder.bind();
|
||||
NzbDrone.footerRegion.show(new FooterView());
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
"use strict";
|
||||
define(['app'], function () {
|
||||
|
||||
NzbDrone.Shared.Footer.Model = Backbone.Model.extend({
|
||||
return Backbone.Model.extend({
|
||||
defaults: {
|
||||
'version' : '0.0.0.0',
|
||||
'buildDate' : Date.create()
|
||||
@ -15,6 +15,4 @@ define(['app'], function () {
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
return NzbDrone.Shared.Footer.Model;
|
||||
});
|
||||
|
@ -1,16 +1,14 @@
|
||||
"use strict";
|
||||
define(['app',
|
||||
'Shared/Footer/Model'], function () {
|
||||
NzbDrone.Shared.Footer.View = Backbone.Marionette.ItemView.extend({
|
||||
'Shared/Footer/Model'], function (App, FooterModel) {
|
||||
return Backbone.Marionette.ItemView.extend({
|
||||
|
||||
template: 'Shared/Footer/Template',
|
||||
|
||||
initialize: function () {
|
||||
this.model = new NzbDrone.Shared.Footer.Model();
|
||||
this.model = new FooterModel();
|
||||
this.model.set('version', NzbDrone.Constants.Version);
|
||||
this.model.set('buildDate', NzbDrone.Constants.BuildDate);
|
||||
}
|
||||
});
|
||||
|
||||
return new NzbDrone.Shared.Footer.View();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user