From dac792a2431aafd59a7eb53a86875c58d429d09f Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Tue, 3 Jun 2014 11:36:44 -0700 Subject: [PATCH] Remove .editor class from ReactEditorView ReactEditorView and EditorComponent were using the editor class. This caused context menus that used `.editor` as the selector to display twice. --- src/react-editor-view.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/react-editor-view.coffee b/src/react-editor-view.coffee index 18061ff99..545472328 100644 --- a/src/react-editor-view.coffee +++ b/src/react-editor-view.coffee @@ -7,7 +7,7 @@ module.exports = class ReactEditorView extends View # The `overlayer` class is included for backwards compatibility with # context menus. It should be removed in v1.0.0 - @content: -> @div class: 'editor react-wrapper overlayer' + @content: -> @div class: 'react-wrapper overlayer' focusOnAttach: false