mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-22 22:16:13 -04:00
rjs -> webpack
This commit is contained in:
@@ -1,14 +1,9 @@
|
||||
'use strict';
|
||||
define(
|
||||
[
|
||||
'marionette',
|
||||
'System/StatusModel'
|
||||
], function (Marionette, StatusModel) {
|
||||
return Marionette.ItemView.extend({
|
||||
template: 'System/Info/About/AboutViewTemplate',
|
||||
var Marionette = require('marionette');
|
||||
var StatusModel = require('../../StatusModel');
|
||||
|
||||
initialize: function () {
|
||||
this.model = StatusModel;
|
||||
}
|
||||
});
|
||||
});
|
||||
module.exports = Marionette.ItemView.extend({
|
||||
template : 'System/Info/About/AboutViewTemplate',
|
||||
initialize : function(){
|
||||
this.model = StatusModel;
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user