|
|
|
@@ -39,7 +39,7 @@ var isLegacyIOS = (function() { |
|
|
|
// Symbol set: modern emoji for capable browsers, plain text for iOS ≤ 9. |
|
|
|
var SYM = isLegacyIOS ? { |
|
|
|
prev: '<<', |
|
|
|
play: '▶', // U+25B6 — works on iOS 9 |
|
|
|
play: '►', // U+25BA — text-presentation pointer (▶ U+25B6 fails as broken emoji on iOS 9) |
|
|
|
pause: '||', |
|
|
|
stop: '■', // U+25A0 — works on iOS 9 |
|
|
|
next: '>>', |
|
|
|
@@ -437,7 +437,7 @@ function renderFrame(ts) { |
|
|
|
if (!ws || ws.readyState !== WebSocket.OPEN) { |
|
|
|
drawLabel(ctx2d, w, h, '● NO SIGNAL', '#333'); |
|
|
|
} else if (!winampPlaying) { |
|
|
|
drawLabel(ctx2d, w, h, '▶ PLAY', '#1a3a1a'); |
|
|
|
drawLabel(ctx2d, w, h, SYM.play + ' PLAY', '#1a3a1a'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|