M index.html => index.html +6 -4
@@ 1,5 1,4 @@
<!DOCTYPE html>
-<html lang="en">
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no" />
@@ 20,7 19,8 @@
<button id="warningbtn" onclick="closePopup()">Alright.</button>
</div>
<div id="testWrapper">
- <div id="startStopBtn" onclick="startStop()"></div><br/>
+ <div id="startStopBtn" onclick="startStop()">
+ </div><br>
<a class="privacy" href="#" onclick="I('privacyPolicy').style.display=''">Privacy</a>
<div id="test">
<div class="testGroup">
@@ 52,6 52,9 @@
<div id="ipArea">
<span id="ip"></span>
</div>
+ <div id="shareArea" style="display:none">
+ <input type="text" value="" id="resultsURL" readonly="readonly" onclick="this.select();this.focus();this.select();document.execCommand('copy');alert('Link copied')"/>
+ </div>
</div>
</div>
<!-- Privacy policy -->
@@ 78,6 81,5 @@
<footer>
Librespeed fork developed by Purplebored © 2023-2024 | <a href="https://git.sr.ht/~purplebored/LibreSpeed-Dark">Source code</a> | <a href="https://purplebored.pl" target="_blank">My Main website</a> |
</footer>
-
</body>
-</html>
+</html><
\ No newline at end of file
M speedtest.js => speedtest.js +1 -1
@@ 49,7 49,7 @@ function Speedtest() {
this._settings = {}; //settings for the speedtest worker
this._state = 0; //0=adding settings, 1=adding servers, 2=server selection done, 3=test running, 4=done
console.log(
- "LibreSpeed v5.2.5 Fork by Purplebored - https://codeberg.org/Purplebored/librespeed-dark originaly made by Federico Dossena - https://github.com/librespeed/speedtest"
+ "LibreSpeed v5.2.5 Fork by Purplebored - https://git.sr.ht/~purplebored/LibreSpeed-Dark originaly made by Federico Dossena - https://github.com/librespeed/speedtest"
);
}