diff --git a/apps/common/main/lib/component/SynchronizeTip.js b/apps/common/main/lib/component/SynchronizeTip.js index 96a2d17f50..1dc9e43b59 100644 --- a/apps/common/main/lib/component/SynchronizeTip.js +++ b/apps/common/main/lib/component/SynchronizeTip.js @@ -213,6 +213,9 @@ define([ var width = this.cmpEl.width(); if (left+width>Common.Utils.innerWidth()) left = Common.Utils.innerWidth() - width - 10; + if (left < 10) + left = 10; + left = (left + 'px'); } else left = 'auto';