Skip to content

Instantly share code, notes, and snippets.

View dasouch's full-sized avatar

Danilo Vargas dasouch

View GitHub Profile
@tbranyen
tbranyen / client.js
Created June 3, 2011 02:29
Synchronize yo HTML5 slides
(function(window, document) {
// The end user should be allowed to disable synchronization. This button
// is optional on the page
var syncAllow = true;
var syncButton = document.querySelector('.sync-button');
// If the sync button exists bind a click event and toggle the syncAllow
// boolean. Set the value of the button.
if(syncButton) {