eclp
Senior Member
In my opinion, the general performance of the GUI leaves a lot to be desired.
To check this yourself you can use Google's PageSpeed Insights for Chrome. For example, I currently receive a score of only 29/100 (PageSpeed results with RT88U at 384.4).
This leaves room for improvement. Most things are (I think) relatively easy to do, caching or compression for example.
Is there a general interest or am I alone here with my opinion?
---
A small error message regarding Synchronous XMLHttpRequest is relatively easy to fix:
Chrome Developer Tools:
jquery.js :5
fix:
To check this yourself you can use Google's PageSpeed Insights for Chrome. For example, I currently receive a score of only 29/100 (PageSpeed results with RT88U at 384.4).
This leaves room for improvement. Most things are (I think) relatively easy to do, caching or compression for example.
Is there a general interest or am I alone here with my opinion?
---
A small error message regarding Synchronous XMLHttpRequest is relatively easy to fix:
Chrome Developer Tools:
[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/.
jquery.js :5
Code:
.open(n.type,n.url,n.async),n.xhrFields)
fix:
Code:
.open(n.type,n.url,n.async || true),n.xhrFields)