Skip to content

Instantly share code, notes, and snippets.

View tommeagher's full-sized avatar

Tom Meagher tommeagher

View GitHub Profile
// Types
var one = 1;
var two = 2;
three;
window.three;
window.one = 1;
one = 1;
var one = [];
var one = {one: 1};
one.two = 1;
@tommeagher
tommeagher / trigger-zoom.js
Created March 16, 2012 20:46 — forked from thejefflarson/trigger-zoom.js
Possible TimelineSetter function to fix card flipping
var currentTimeline = TimelineSetter.Timeline.boot(options);
currentTimeline.api.onLoad(function() {
currentTimline.timeline.$('.TS-zoom_in').click();
});