I using sync() on ajax got an deprecated warning below
Chrome Version 75.0.3770.100 (Official Build) (64-bit)
var xhr = webix.ajax().sync().get('https://jsonplaceholder.typicode.com/posts/1');
ajax.js:90 [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
O @ ajax.js:90
get @ ajax.js:174
(anonymous) @ VM459:1
undefined
---- withotu sync----
var xhr = webix.ajax().get('https://jsonplaceholder.typicode.com/posts/1');
undefined
I just report this, any other new syntax to use this sync https://docs.webix.com/api__ajax_sync.html
alternatively I use ajax promise
Thanks.