mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
Fixed: Back to top button is back
Fixed: Delete series in Firefox
This commit is contained in:
parent
c926775719
commit
48c9e29eab
3 changed files with 24 additions and 40 deletions
|
@ -29,25 +29,6 @@ require.config({
|
|||
|
||||
shim: {
|
||||
|
||||
jquery: {
|
||||
exports: 'jQuery',
|
||||
deps :
|
||||
[
|
||||
'Mixins/jquery.ajax'
|
||||
],
|
||||
|
||||
init: function (AjaxMixin) {
|
||||
require(
|
||||
[
|
||||
'jQuery/ToTheTop',
|
||||
'Instrumentation/ErrorHandler'
|
||||
]);
|
||||
|
||||
AjaxMixin.apply($);
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
signalR: {
|
||||
deps:
|
||||
[
|
||||
|
@ -83,11 +64,15 @@ require.config({
|
|||
},
|
||||
|
||||
backbone: {
|
||||
deps :
|
||||
deps:
|
||||
[
|
||||
'jquery',
|
||||
'underscore',
|
||||
'jquery'
|
||||
'Mixins/jquery.ajax',
|
||||
'jQuery/ToTheTop'
|
||||
|
||||
],
|
||||
|
||||
exports: 'Backbone'
|
||||
},
|
||||
|
||||
|
@ -199,6 +184,7 @@ require.config({
|
|||
|
||||
define(
|
||||
[
|
||||
'jquery',
|
||||
'backbone',
|
||||
'marionette',
|
||||
'jQuery/RouteBinder',
|
||||
|
@ -209,7 +195,7 @@ define(
|
|||
'Router',
|
||||
'Shared/Modal/Controller',
|
||||
'Instrumentation/StringFormat'
|
||||
], function (Backbone, Marionette, RouteBinder, SignalRBroadcaster, NavbarView, AppLayout, SeriesController, Router, ModalController) {
|
||||
], function ($, Backbone, Marionette, RouteBinder, SignalRBroadcaster, NavbarView, AppLayout, SeriesController, Router, ModalController) {
|
||||
|
||||
new SeriesController();
|
||||
new ModalController();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue