Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(524)

Unified Diff: ui/file_manager/audio_player/audio_player.html

Issue 980423003: [Audio Player] support touch on the volume bar and progress slider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/audio_player/audio_player.html
diff --git a/ui/file_manager/audio_player/audio_player.html b/ui/file_manager/audio_player/audio_player.html
index 0b225f95b43885cac5b5791df21874df0789314d..cc784faf09b0bea17d7a6962e9d6e27cb08eab51 100644
--- a/ui/file_manager/audio_player/audio_player.html
+++ b/ui/file_manager/audio_player/audio_player.html
@@ -83,8 +83,7 @@
<div class="current">{{timeString_}}</div>
</div>
<div class="progress media-control custom-slider">
- <input name="timeInput"
- type="range"
+ <input name="timeInput" type="range" touch-action="manipulation"
min="0" max="{{duration}}" value="{{time}}">
<div class="bar">
<div class="filled" style="width: {{time/duration*100}}%;"></div>
@@ -184,7 +183,7 @@
<link rel="stylesheet" href="elements/volume_controller.css">
<div id="background"></div>
- <input name="rawValueInput" id="rawValueInput"
+ <input name="rawValueInput" id="rawValueInput" touch-action="manipulation"
type="range" min="0" max="100" value="{{rawValue}}">
<div id="bar">
<div class="filled" style="height: {{rawValue}}%;"></div>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698