mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-28 09:36:16 +01:00
fix: #7176, FUOC on app.reskin()
This commit is contained in:
@@ -764,15 +764,24 @@ app.cacheBuster = null;
|
|||||||
if (!clientEl) {
|
if (!clientEl) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Update client.css link element to point to selected skin variant
|
|
||||||
clientEl.href = config.relative_path + '/assets/client' + (skinName ? '-' + skinName : '') + '.css';
|
|
||||||
|
|
||||||
var currentSkinClassName = $('body').attr('class').split(/\s+/).filter(function (className) {
|
var linkEl = document.createElement('link');
|
||||||
return className.startsWith('skin-');
|
linkEl.rel = 'stylesheet';
|
||||||
});
|
linkEl.type = 'text/css';
|
||||||
$('body').removeClass(currentSkinClassName.join(' '));
|
linkEl.href = config.relative_path + '/assets/client' + (skinName ? '-' + skinName : '') + '.css';
|
||||||
if (skinName) {
|
linkEl.onload = function () {
|
||||||
$('body').addClass('skin-' + skinName);
|
clientEl.parentNode.removeChild(clientEl);
|
||||||
}
|
|
||||||
|
// Update body class with proper skin name
|
||||||
|
var currentSkinClassName = $('body').attr('class').split(/\s+/).filter(function (className) {
|
||||||
|
return className.startsWith('skin-');
|
||||||
|
});
|
||||||
|
$('body').removeClass(currentSkinClassName.join(' '));
|
||||||
|
if (skinName) {
|
||||||
|
$('body').addClass('skin-' + skinName);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
document.head.appendChild(linkEl);
|
||||||
};
|
};
|
||||||
}());
|
}());
|
||||||
|
|||||||
Reference in New Issue
Block a user