This commit is contained in:
Mirco Wittrien 2020-03-30 20:16:53 +02:00
parent 5b7f965630
commit 141802452d
2 changed files with 4 additions and 4 deletions

View File

@ -847,7 +847,7 @@
else {
let rightMargin = arects.width - (left + irects.width);
if (rightMargin < 0) {
itemLayer.style.setProperty("left", arects.width - irects.width - 5 + "px");
itemLayer.style.setProperty("left", (arects.width - irects.width - 5) + "px");
pointer.style.setProperty("margin-left", `${-1*rightMargin}px`);
}
}
@ -9180,8 +9180,8 @@
}
}
};
InternalBDFDB.processV2CPluginCard = function (e) {InternalBDFDB._processCard(e, e.instance.props.addon && e.instance.props.addon.plugin);};
InternalBDFDB.processV2CThemeCard = function (e) {InternalBDFDB._processCard(e, e.instance.props.addon && !e.instance.props.addon.plugin && e.instance.props.addon.css);};
InternalBDFDB.processV2CPluginCardNO = function (e) {InternalBDFDB._processCard(e, e.instance.props.addon && e.instance.props.addon.plugin);};
InternalBDFDB.processV2CThemeCardNO = function (e) {InternalBDFDB._processCard(e, e.instance.props.addon && !e.instance.props.addon.plugin && e.instance.props.addon.css);};
InternalBDFDB.createLibrarySettings = function () {
if (!window.BDFDB || typeof BDFDB != "object" || !BDFDB.loaded) return;

File diff suppressed because one or more lines are too long