Browse Source

Iguana Hex needed to have async false. was failing whole native komodo gui due to this

master
Satinder Grewal 8 years ago
parent
commit
2fa8d6d840
  1. 2
      assets/scripts/iguana_api.js

2
assets/scripts/iguana_api.js

@ -967,6 +967,7 @@ function Iguana_HashHex(data) {
'message': data 'message': data
}; };
$.ajax({ $.ajax({
async: false,
type: 'POST', type: 'POST',
data: JSON.stringify(ajax_data), data: JSON.stringify(ajax_data),
url: 'http://127.0.0.1:7778', url: 'http://127.0.0.1:7778',
@ -983,7 +984,6 @@ function Iguana_HashHex(data) {
console.log(error); console.log(error);
} }
}); });
return result; return result;
} }

Loading…
Cancel
Save