This commit is contained in:
Mirco Wittrien 2019-09-25 16:42:06 +02:00
parent f57e04d2f0
commit 9e5139ce5f
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -2485,8 +2485,8 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins ? BDFDB.myPlugins : {}, BDv2Api
BDFDB.colorCOMPARE = function (color1, color2) {
if (color1 && color2) {
color1 = BDFDB.colorCONVERT(color1, 'RGBCOMP');
color2 = BDFDB.colorCONVERT(color2, 'RGBCOMP');
color1 = BDFDB.colorCONVERT(color1, 'RGBA');
color2 = BDFDB.colorCONVERT(color2, 'RGBA');
if (color1 && color2) return BDFDB.equals(color1, color2);
}
return null;