summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorjamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-15 05:34:23 +0000
committerjamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-15 05:34:23 +0000
commita18d8682443c8a40e2824ff6926045f9a4843804 (patch)
tree6519e9aeb1d7f75459dd05c0ade5c3387427b383 /remoting
parent453302cdca11570806f7f471ea52bfcb15a36deb (diff)
downloadchromium_src-a18d8682443c8a40e2824ff6926045f9a4843804.zip
chromium_src-a18d8682443c8a40e2824ff6926045f9a4843804.tar.gz
chromium_src-a18d8682443c8a40e2824ff6926045f9a4843804.tar.bz2
Fixed Apps v2 scrolling.
The bug was introduced by https://chromiumcodereview.appspot.com/22006002, which replaced no-scroll with separate no-horizontal-scroll and no-vertical-scroll classes, but failed to update this spot. BUG=272348 Review URL: https://codereview.chromium.org/26955003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228633 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/webapp/ui_mode.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/remoting/webapp/ui_mode.js b/remoting/webapp/ui_mode.js
index 966207f..8567493 100644
--- a/remoting/webapp/ui_mode.js
+++ b/remoting/webapp/ui_mode.js
@@ -132,7 +132,8 @@ remoting.setMode = function(mode) {
// TODO(jamiewalch): crbug.com/252796: Remove this once crbug.com/240772
// is fixed.
var htmlNode = /** @type {HTMLElement} */ (document.body.parentNode);
- htmlNode.classList.remove('no-scroll');
+ htmlNode.classList.remove('no-horizontal-scroll');
+ htmlNode.classList.remove('no-vertical-scroll');
}
};