mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
removed NzbDrone. namespace, everything is done using require.
This commit is contained in:
@@ -1,7 +1,11 @@
|
||||
'use strict';
|
||||
define(['app', 'Shared/Toolbar/ButtonModel'], function () {
|
||||
return Backbone.Collection.extend({
|
||||
model: NzbDrone.Shared.Toolbar.ButtonModel
|
||||
define(
|
||||
[
|
||||
'backbone',
|
||||
'Shared/Toolbar/ButtonModel'
|
||||
], function (Backbone, ButtonModel) {
|
||||
return Backbone.Collection.extend({
|
||||
model: ButtonModel
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user