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

Loading…
Cancel
Save