diff options
author | Hakim El Hattab | 2017-06-12 10:22:47 +0200 |
---|---|---|
committer | Hakim El Hattab | 2017-06-12 10:22:47 +0200 |
commit | 9342d19b5adcd3eea1f2f16ba74ec2f83928efc5 (patch) | |
tree | eff048e47e7bf27ff766d9b3b34f7f02514613a8 /js | |
parent | 6ae4ad69d2152d83c02aae52d40c14b0223e42ce (diff) |
fix centering of edge-aligned controls
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index ae0ec35..186a999 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -4965,7 +4965,7 @@ this.context.beginPath(); this.context.arc( x, y, radius, 0, Math.PI * 2, false ); this.context.lineWidth = this.thickness; - this.context.strokeStyle = '#666'; + this.context.strokeStyle = 'rgba( 255, 255, 255, 0.2 )'; this.context.stroke(); if( this.playing ) { |