From ee1ecef0e4823ab813224defcd8391ea252adfa1 Mon Sep 17 00:00:00 2001 From: Daniel Quinn <code@danielquinn.org> Date: Fri, 3 Apr 2015 12:26:40 +0200 Subject: [PATCH] Added support for standard transforms -webkit- stuff only works on webkit browsers. I'm pretty sure that using the standard `transform:` here works in most modern browsers. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 5b631e9..e839709 100644 --- a/index.html +++ b/index.html @@ -75,7 +75,7 @@ <p>That's it, time to go back up.</p> <br> <a href="#/2"> - <img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Up arrow" style="-webkit-transform: rotate(180deg);"> + <img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Up arrow" style="transform: rotate(180deg); -webkit-transform: rotate(180deg);"> </a> </section> </section> -- GitLab