Rename path variables to prevent collisions

This commit is contained in:
Kevin Sawicki
2013-06-12 17:21:42 -07:00
parent 10f92836e6
commit 15f6a33c4b
4 changed files with 11 additions and 10 deletions

View File

@@ -42,10 +42,10 @@ class SymbolsView extends SelectList
@attach()
populateFileSymbols: ->
path = rootView.getActiveView().getPath()
filePath = rootView.getActiveView().getPath()
@list.empty()
@setLoading("Generating symbols...")
new TagGenerator(path).generate().done (tags) =>
new TagGenerator(filePath).generate().done (tags) =>
if tags.length > 0
@maxItem = Infinity
@setArray(tags)