I hereby claim:
- I am joeworkman on github.
- I am joeworkman (https://keybase.io/joeworkman) on keybase.
- I have a public key ASDKpxAWcCSCV8UQxeYGLKvoxtLHMVCaJKOc96-ytUr0Kgo
To claim this, I am signing this object:
Verifying that +joeworkman is my blockchain ID. https://onename.com/joeworkman |
!function(){"use strict";function a(b,d){function e(a,b){return function(){return a.apply(b,arguments)}}var f;if(d=d||{},this.trackingClick=!1,this.trackingClickStart=0,this.targetElement=null,this.touchStartX=0,this.touchStartY=0,this.lastTouchIdentifier=0,this.touchBoundary=d.touchBoundary||10,this.layer=b,this.tapDelay=d.tapDelay||200,this.tapTimeout=d.tapTimeout||700,!a.notNeeded(b)){for(var g=["onMouse","onClick","onTouchStart","onTouchMove","onTouchEnd","onTouchCancel"],h=this,i=0,j=g.length;j>i;i++)h[g[i]]=e(h[g[i]],h);c&&(b.addEventListener("mouseover",this.onMouse,!0),b.addEventListener("mousedown",this.onMouse,!0),b.addEventListener("mouseup",this.onMouse,!0)),b.addEventListener("click",this.onClick,!0),b.addEventListener("touchstart",this.onTouchStart,!1),b.addEventListener("touchmove",this.onTouchMove,!1),b.addEventListener("touchend",this.onTouchEnd,!1),b.addEventListener("touchcancel",this.onTouchCancel,!1),Event.prototype.stopImmediatePropagation||(b.removeEventListener=function(a,c,d){var e=No |
$(window).load(function(){ | |
function resizeToCover(video,container,natural_width,natural_height) { | |
// set the video viewport to slide size which is determined by parent stack JS | |
var scale_h = container.width() / natural_width; | |
var scale_v = container.height() / natural_height; | |
var scale = scale_h > scale_v ? scale_h : scale_v; | |
// don't allow scaled width < minimum video width | |
if (scale * natural_width < min_width) {scale = min_width / natural_width;}; |
$(document).keypress(function(event){ | |
if (event.which == '13') { | |
event.preventDefault(); | |
} | |
}); |
I hereby claim:
To claim this, I am signing this object:
(function() { | |
// Parent Class | |
this.ClassA = function() { | |
var defaults = { | |
setting1: null, | |
setting2: 'hello', | |
} | |
// Create options by extending defaults with the passed in arugments |