[DE PE SSE] Fix alt hint's position for desktop app

This commit is contained in:
JuliaSvinareva 2021-11-15 15:49:01 +03:00
parent a05d2d9aba
commit 9e891d4f3d

View file

@ -476,8 +476,8 @@ define([
iconCls: iconid,
disabled: disabled === true,
dataHint:'0',
dataHintDirection: hintDirection ? hintDirection : 'left',
dataHintOffset: hintOffset ? hintOffset : '10, 10',
dataHintDirection: hintDirection ? hintDirection : (config.isDesktopApp ? 'right' : 'left'),
dataHintOffset: hintOffset ? hintOffset : (config.isDesktopApp ? '10, -10' : '10, 10'),
dataHintTitle: hintTitle
})).render(slot);
}