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:
| #!/usr/bin/zsh | |
| if [ "$#" -ne 2 ]; then | |
| echo "Usage: $0 OLD_VERSION NEW_VERSION" >&2 | |
| exit 1 | |
| fi | |
| export OLD=$1 | |
| export NEW=$2 |
| #!/bin/bash | |
| rm -r /home/username/websites/total-cms.com/cms-data/ | |
| cp -r /home/username/websites/total-cms.com/cms-data-template/ /home/username/websites/total-cms.com/cms-data/ |
| (function() { | |
| // Parent Class | |
| this.ClassA = function() { | |
| var defaults = { | |
| setting1: null, | |
| setting2: 'hello', | |
| } | |
| // Create options by extending defaults with the passed in arugments |
I hereby claim:
To claim this, I am signing this object:
| $(document).keypress(function(event){ | |
| if (event.which == '13') { | |
| event.preventDefault(); | |
| } | |
| }); |
| $(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;}; |