💄 Use theme as variable name instead of t

This commit is contained in:
Kevin Sawicki
2013-09-16 18:09:15 -07:00
parent b1bd387aee
commit 74e8614653

View File

@@ -23,7 +23,7 @@ class ThemeManager
# Internal-only:
getAvailableNames: ->
_.map(@loadedThemes, (t) -> t.metadata.name)
_.map @loadedThemes, (theme) -> theme.metadata.name
# Internal-only:
getActiveThemes: ->
@@ -63,7 +63,7 @@ class ThemeManager
# Private:
getLoadedTheme: (name) ->
_.find(@loadedThemes, (t) -> t.metadata.name == name)
_.find @loadedThemes, (theme) -> theme.metadata.name is name
# Private:
resolveThemePath: (name) ->