Open hamedprog opened 7 months ago
in certain ports, such as 3010, 3020, or …, the site was facing issues with loading, and it wouldn’t load the SVG file. Upon inspection, it was discovered that sometimes, in the following line, el is null:
self.el.style.display = "block";
Initially, the problem was resolved by creating a delay in the execution of the following line:
OpenSpeedTest.Start();
Then, it was determined that the problem could be solved by making changes in the index.html file. We used an iframe instead of an object tag."
@RachelJill @hamedprog In the next version, we’ll enhance reliability by verifying that the SVG is fully loaded before initiating the start function. If it’s not yet loaded, the app will seamlessly use XHR to ensure everything proceeds smoothly.
in certain ports, such as 3010, 3020, or …, the site was facing issues with loading, and it wouldn’t load the SVG file. Upon inspection, it was discovered that sometimes, in the following line, el is null:
Initially, the problem was resolved by creating a delay in the execution of the following line:
Then, it was determined that the problem could be solved by making changes in the index.html file. We used an iframe instead of an object tag."