v1.7b5 line 5051
v1.7b5 line 5051
torchatp
Posts: 3Questions: 0Answers: 0
when sXInner contain "%" eg. 200% 110% error :
nCalcTmp.style.width = oSettings.oScroll.sXInner + "px";
fix by
nCalcTmp.style.width = oSettings.oScroll.sXInner;//+ "px";
nCalcTmp.style.width = oSettings.oScroll.sXInner + "px";
fix by
nCalcTmp.style.width = oSettings.oScroll.sXInner;//+ "px";
This discussion has been closed.
Replies
Thanks,
Allan