fix(dom) scrollIntoViewIfNeeded: add false

This commit is contained in:
coderaiser 2014-01-21 05:13:44 -05:00
parent 070d89bad0
commit 51b507d1a3

View file

@ -1772,7 +1772,7 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog;
var lRet = pElement && pElement.scrollIntoViewIfNeeded;
if (lRet)
pElement.scrollIntoViewIfNeeded();
pElement.scrollIntoViewIfNeeded(false);
return lRet;
};