Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Unified Diff: ui/webui/resources/js/cr/ui/splitter.js

Issue 2804543002: [MD Bookmarks] Fix sidebar issues. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/webui/resources/js/cr/ui/splitter.js
diff --git a/ui/webui/resources/js/cr/ui/splitter.js b/ui/webui/resources/js/cr/ui/splitter.js
index 6b659bc0bb65f09bd55b8d8e5cdbcc79ff2e4b2f..b4260e1b185b664c950c63111863ee186c5ec54b 100644
--- a/ui/webui/resources/js/cr/ui/splitter.js
+++ b/ui/webui/resources/js/cr/ui/splitter.js
@@ -249,6 +249,7 @@ cr.define('cr.ui', function() {
var targetElement = this.getResizeTarget_();
var newWidth = this.startWidth_ + this.calcDeltaX_(deltaX);
targetElement.style.width = newWidth + 'px';
+ cr.dispatchSimpleEvent(this, 'dragmove');
},
/**

Powered by Google App Engine
This is Rietveld 408576698