We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b11010f commit b8b5123Copy full SHA for b8b5123
assets/noimage.png
2.45 KB
index.js
@@ -406,3 +406,8 @@ function getDiffColour(rating) {
406
if (rating >= 9) return '#000000';
407
return difficultyColourSpectrum(rating);
408
}
409
+
410
+const img = document.getElementById('bg');
411
+ img.onerror = function() {
412
+ img.src = './assets/noimage.png';
413
+ };
settings.json
@@ -18,7 +18,7 @@
18
"uniqueID": "GraphSmoothing",
19
"type": "number",
20
"title": "Graph Smoothing",
21
- "description": "Change the smoothing of the strain graph.\nWarning: Any value beyond 4 will look silly.",
+ "description": "Change the smoothing of the strain graph.⠀⠀\n0 = No smoothing.\n5 = manscaped smooth.",
22
"value": "3"
23
},
24
{
0 commit comments