Skip to content

Commit

Permalink
Revert "Fixed linting errors"
Browse files Browse the repository at this point in the history
This reverts commit c40ef86.
  • Loading branch information
Focus committed Sep 21, 2017
1 parent c40ef86 commit c25aec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/label-view.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class LabelView extends SelectListView
while(match = texRootRex.exec(@editor.getText()))
absolutFilePath = FindLabels.getAbsolutePath(activePaneItemPath,match[4])
basePath = pathModule.dirname(absolutFilePath)
labels = ListLabels.fromDir(basePath, /\.tex$/)
labels = ListLabels.fromDir(basePath, /\.tex$/);
@setItems(labels)
@panel ?= atom.workspace.addModalPanel(item: this)
@panel.show()
Expand All @@ -40,7 +40,7 @@ class LabelView extends SelectListView
"label"

viewForItem: ({label}) ->
"<li>#{label}</li>"
"<li>#{label}</li>"

confirmed: ({label}) ->
@editor.insertText label
Expand Down

0 comments on commit c25aec3

Please sign in to comment.