Rename value var to defaultValue

This commit is contained in:
Kevin Sawicki
2014-04-17 10:20:33 -07:00
parent 541ffa5057
commit 6ec58e1163

View File

@@ -165,8 +165,8 @@ class Config
#
# Returns the default value.
getDefault: (keyPath) ->
value = _.valueForKeyPath(@defaultSettings, keyPath)
_.deepClone(value)
defaultValue = _.valueForKeyPath(@defaultSettings, keyPath)
_.deepClone(defaultValue)
# Public: Push the value to the array at the key path.
#