Fix JS errors in source

This commit is contained in:
Mohsen Azimi
2015-03-12 16:04:02 -07:00
parent 215a8fa63e
commit 07d8a89c8f
2 changed files with 14 additions and 4 deletions

View File

@@ -40,7 +40,11 @@ var HeaderView = Backbone.View.extend({
});
},
update: function(url, apiKey, trigger = false){
update: function(url, apiKey, trigger){
if (trigger === undefined) {
trigger = false
}
$('#input_baseUrl').val(url);
//$('#input_apiKey').val(apiKey);