Jonathan Heindl

Results 54 comments of Jonathan Heindl
trafficstars

maybe you cna try the import("@angular/.../forms.js") syntax

in vscode u can use : file://./ to link to any file (after the file:// u need a . for relative files) aside from that you cna try the markdown...

ok i did a bit more testing : you can ``` /** * @see [text](./file.ts) */ ``` this link appears in the tooltip however this one doesnt work in the...

the admin apis can also be called from the frontend - that shouldnt be the reason not to provide them to your library

to be able to manually update your user profile while only provding an account level token

> f each user? Or how would this work? Wouldn't it be more secur the frontend does a backend call that is authorized by a user token the backend then...

ps storing credentials on /credentials.html throws an error about missing username autocomplete attribute

i think you can orient yourself very closely on the okhttp tests which also require the httpok library which is stored in the dependencies.zip including the spring jars the same...

depending on how long it takes (im fairly new) to fetch it async you can save it to a promise and check if the promise completed before drawing the next...

is this the same issue ? ``` global.Text = new JSDOM('test', { contentType: 'text/html' }).window.Text; const doc=new JSDOM("test", { contentType: "text/html"}).window.document doc.childNodes[0] instanceof Text // => false // doc.childNodes[0].constructor =...