Jetrotal

Results 120 comments of Jetrotal

OK, I'm slowly finding a way to make the pre loader work, bear with me ![image](https://user-images.githubusercontent.com/45118493/170800805-975cae2b-e921-4b7f-9cb6-0f3ae2552e02.png) -------------------------------------------------- From what I understood, this is how index-pr.js reads the wasm file: ```javascript...

Update: We found this post and concluded that the gzip compression from nginx also hides the content-length from browsers. ![image](https://user-images.githubusercontent.com/45118493/170806789-7963b5a5-65d4-4d8a-b672-9245da2d6d1d.png) So, from what I got, the compression task will be...

well, one solution is to have an extra file or line in the js file that already has the wasm lengtth, like a gencache file, or `Module.filesize` But that implies...

I took @Ghabry concerns in consideration, and made the following changes: force the loader to look for `Module.filesize` or `resp.headers.get('Content-Length')` ```javascript contentLength = Module.filesize ? Module.filesize : resp.headers.get("Content-Length"); ``` If...

some more updates: I put the preloader on a separeted JS file, to make it easy to modify and edit stuff. As seen here: https://github.com/jetrotal/testing-stuff and can be tested here:...

> As is there's not much you can do if you're just working with browser side code. If you're making the request server-to-server then there should be no issues. A...

Yeah, `ENTER` and `SPACE` would call the default Command Menu, `CTRL + ENTER` and `CONTROL + SPACE` would call the Quick Edit/Quick Create Menu Behavior i'm suggesting... -------------- I feel...

There you go https://github.com/KDAB/DeclarativeWidgets https://www.kdab.com/declarative-widgets/ ![image](https://user-images.githubusercontent.com/45118493/144439006-57446699-1cb6-47db-bab4-422dfd2eb1e0.png) Random question, Do you think i can set up my own qml playground like this: https://github.com/patrickelectric/qmlonline and incorporate on it some libraries that are...

![image](https://user-images.githubusercontent.com/45118493/165227509-641e74b8-9d06-4ad1-aec3-bf98775036a3.png) Here's also a working mockup to an Event Selector tab: https://codepen.io/jetrotau/pen/rNGVJqZ It's very similar to the one used on RPG Maker Unite, but it was made 5 months prior...

Hi, I have made a library for visual Assets called "ez" with my limited knowledge on QML. Maybe you can cut off the `functions` and `var appButtons`, since they list...