From 0996d90be3da6c2da6d908f2befbe232b644a63d Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 21 Apr 2017 12:41:45 -0600 Subject: [PATCH] Add scrollbar classes in case any packages or themes target them --- src/text-editor-component.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/text-editor-component.js b/src/text-editor-component.js index afbacca82..36d8ec45a 100644 --- a/src/text-editor-component.js +++ b/src/text-editor-component.js @@ -822,6 +822,7 @@ class TextEditorComponent { dummyScrollbarVnodes.push($.div( { ref: 'scrollbarCorner', + className: 'scrollbar-corner', style: { position: 'absolute', height: '20px', @@ -2652,6 +2653,7 @@ class DummyScrollbarComponent { return $.div( { + className: `${this.props.orientation}-scrollbar`, style: outerStyle, on: { scroll: this.props.didScroll,