From 11ee006f9d5f30b84761736e819e0b30e5579437 Mon Sep 17 00:00:00 2001 From: Hakim El Hattab <hakim.elhattab@gmail.com> Date: Wed, 21 Dec 2011 20:21:52 -0800 Subject: [PATCH] slide with code is now editable, escaped unicode arrows --- index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index a4fca03..15253ea 100644 --- a/index.html +++ b/index.html @@ -100,7 +100,7 @@ <section> <h2>Pretty Code</h2> - <pre><code> + <pre><code contenteditable> var supports3DTransforms = document.body.style['webkitPerspective'] !== undefined || document.body.style['MozPerspective'] !== undefined || document.body.style['perspective'] !== undefined; @@ -169,10 +169,10 @@ linkify( 'a' ); </div> <aside class="controls"> - <a class="left" href="#">â—„</a> - <a class="right" href="#">â–º</a> - <a class="up" href="#">â–²</a> - <a class="down" href="#">â–¼</a> + <a class="left" href="#">◄</a> + <a class="right" href="#">►</a> + <a class="up" href="#">▲</a> + <a class="down" href="#">▼</a> </aside> <script src="js/reveal.js"></script> -- GitLab