Row: fix for row editor and scroll pos, Fixes #846

This commit is contained in:
Torkel Ödegaard
2014-09-23 08:32:04 +02:00
parent af8fec941c
commit 0fbace7285

View File

@@ -34,6 +34,7 @@ function (angular, $) {
function hideScrollbars(value) {
if (value) {
window.scrollTo(0,0);
document.documentElement.style.overflow = 'hidden'; // firefox, chrome
document.body.scroll = "no"; // ie only
} else {