Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix lint error
  • Loading branch information
okbel committed Mar 10, 2017
1 parent 5879e4f commit 241c87e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/text-editor-component.coffee
Expand Up @@ -139,7 +139,7 @@ class TextEditorComponent

measureWindowSize = @measureWindowSize.bind(this)
window.addEventListener('resize', measureWindowSize)
@disposables.add(new Disposable => window.removeEventListener('resize', measureWindowSize))
@disposables.add(new Disposable -> window.removeEventListener('resize', measureWindowSize))

getDomNode: ->
@domNode
Expand Down

0 comments on commit 241c87e

Please sign in to comment.