convert spaces to tabs to match project style

master
Hakim El Hattab 2012-07-01 18:34:07 -04:00
parent 76a60eea31
commit 2b9f8e6c0d
1 changed files with 68 additions and 68 deletions

View File

@ -1,85 +1,85 @@
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Slide Notes</title> <title>Slide Notes</title>
<style> <style>
#notes { #notes {
font-family: Helvetica; font-family: Helvetica;
font-size: 24px; font-size: 24px;
width: 640px; width: 640px;
} }
#wrap-slides { #wrap-slides {
width: 640px; width: 640px;
height: 512px; height: 512px;
float: left; float: left;
} }
#slides { #slides {
width: 1280px; width: 1280px;
height: 1024px; height: 1024px;
border: 1px solid black; border: 1px solid black;
-moz-transform: scale(0.5); -moz-transform: scale(0.5);
-moz-transform-origin: 0 0; -moz-transform-origin: 0 0;
-o-transform: scale(0.5); -o-transform: scale(0.5);
-o-transform-origin: 0 0; -o-transform-origin: 0 0;
-webkit-transform: scale(0.5); -webkit-transform: scale(0.5);
-webkit-transform-origin: 0 0; -webkit-transform-origin: 0 0;
} }
#wrap-next-slide { #wrap-next-slide {
width: 320px; width: 320px;
height: 256px; height: 256px;
float: left; float: left;
margin: 0 0 0 50px; margin: 0 0 0 50px;
} }
#next-slide { #next-slide {
width: 1280px; width: 1280px;
height: 1024px; height: 1024px;
border: 1px solid black; border: 1px solid black;
-moz-transform: scale(0.25); -moz-transform: scale(0.25);
-moz-transform-origin: 0 0; -moz-transform-origin: 0 0;
-o-transform: scale(0.25); -o-transform: scale(0.25);
-o-transform-origin: 0 0; -o-transform-origin: 0 0;
-webkit-transform: scale(0.25); -webkit-transform: scale(0.25);
-webkit-transform-origin: 0 0; -webkit-transform-origin: 0 0;
} }
</style> </style>
</head> </head>
<body> <body>
<div id="wrap-slides"> <div id="wrap-slides">
<iframe src="/?receiver" width="1280" height="1024" id="slides"></iframe> <iframe src="/?receiver" width="1280" height="1024" id="slides"></iframe>
</div> </div>
<div id="wrap-next-slide"> <div id="wrap-next-slide">
<iframe src="/?receiver" width="640" height="512" id="next-slide"></iframe> <iframe src="/?receiver" width="640" height="512" id="next-slide"></iframe>
</div> </div>
<div id="notes"></div> <div id="notes"></div>
<script src="/socket.io/socket.io.js"></script> <script src="/socket.io/socket.io.js"></script>
<script> <script>
var socketId = '{{socketId}}'; var socketId = '{{socketId}}';
var socket = io.connect(window.location.origin); var socket = io.connect(window.location.origin);
var notes = document.getElementById('notes'); var notes = document.getElementById('notes');
var slides = document.getElementById('slides'); var slides = document.getElementById('slides');
var nextSlide = document.getElementById('next-slide'); var nextSlide = document.getElementById('next-slide');
socket.on('slidedata', function(data) { socket.on('slidedata', function(data) {
// ignore data from sockets that aren't ours // ignore data from sockets that aren't ours
if (data.socketId !== socketId) { return; } if (data.socketId !== socketId) { return; }
notes.innerHTML = data.notes; notes.innerHTML = data.notes;
slides.contentWindow.Reveal.navigateTo(data.indexh, data.indexv); slides.contentWindow.Reveal.navigateTo(data.indexh, data.indexv);
nextSlide.contentWindow.Reveal.navigateTo(data.nextindexh, data.nextindexv); nextSlide.contentWindow.Reveal.navigateTo(data.nextindexh, data.nextindexv);
}); });
</script> </script>
</body> </body>
</html> </html>