aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.html
diff options
context:
space:
mode:
authorLorenzo Tilve <ltilve@igalia.com>2021-05-04 14:31:34 +0200
committerLorenzo Tilve <ltilve@igalia.com>2021-05-04 14:32:38 +0200
commitf4acfb635ad6879c1530efdc1b8bb56053cdad31 (patch)
tree4b1632b8d8dfe3d9eb75413f79fb3e700e3d6252 /src/index.html
parente139569eab2db458066af20de666d0b68a74908d (diff)
Events triggered by webapps on those actions were producing some race conditions eventually causing a freeze. So disabling those and hiding displaying draggable link. Bug-AGL: SPEC-3786 Signed-off-by: Lorenzo Tilve <ltilve@igalia.com> Change-Id: I64485b93077e1205fcd6d43ffa352b6a162db8fa
Diffstat (limited to 'src/index.html')
-rw-r--r--src/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.html b/src/index.html
index 5dac7c5..5095354 100644
--- a/src/index.html
+++ b/src/index.html
@@ -31,14 +31,14 @@
<div class="label">
{{ name }}: <span class="value"> {{ value }}%</span>
</div>
- <a href="#" class="button" onclick="window.decrease(this);">
+ <a class="button" onclick="window.decrease(this);">
<span class="icon-volume-decrease"></span>
</a>
<div class="slider">
<input type="range" min="1" value="{{ value }}" max="100" oninput="window.change(this);">
<progress value="{{ value }}" max="100"></progress>
</div>
- <a href="#" class="button" onclick="window.increase(this);">
+ <a class="button" onclick="window.increase(this);">
<span class="icon-volume-increase"></span>
</a>
</div>
@@ -48,4 +48,4 @@
</div>
</body>
-</html> \ No newline at end of file
+</html>