When running Backendless.UserService.describeUserClass(async) with async being an instance of Backendless.Async, it will not succeed or fail, ever.
Problem is here: https://github.com/Backendless/JS-Examples/blob/master/editable-invoice/backendless/backendless.js#L726
This line must read
//https://github.com/Backendless/JS-Examples/blob/master/editable-invoice/backendless/backendless.js#L726
isAsync: isAsync,
or else it will resolve to the instance of Async, which, in turn, will make this:
//https://github.com/Backendless/JS-Examples/blob/master/editable-invoice/backendless/backendless.js#L139
config.isAsync = (typeof config.isAsync == 'boolean') ? config.isAsync : false;
return config.isAsync === false. (Which is not true…)
Is there any way to submit pull requests to your JS-SDK directly, rather than reporting them here?
Thanks in advance!
Regards,
Fabian