Fix url.indexOf is Not a Function Error

The sidebar toogler isn't working with newer jquery versions (https://jquery.com/upgrade-guide/3.0/#breaking-change-load-unload-and-error-removed)
This commit is contained in:
1resu
2020-02-20 22:20:12 +01:00
committed by GitHub
parent e5b9b5fdf9
commit 164391c6c2

View File

@@ -44,7 +44,7 @@ PurpleMine.SidebarToggler = (function () {
// Fix issue with context menu position
if (this.$main.css('position') === 'relative') {
$(window).load(function () {
$(window).on("load",function () {
$('#context-menu').appendTo('#wrapper3')
})
}