minor: Change function args names

stable
Miguel Gonzalez 2018-08-29 12:40:06 +02:00 committed by Alex Hermida
parent 484a5fbd4c
commit 39f06a09ee
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ loadPlugin = (pluginPath) ->
else else
resolve() resolve()
fail = (a, errorStr, e) -> fail = (jqXHR, textStatus, errorThrown) ->
console.error("error loading", pluginPath, e) console.error("Error loading plugin", pluginPath, errorThrown)
$.getJSON(pluginPath).then(success, fail) $.getJSON(pluginPath).then(success, fail)