This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function () { | |
require('./modules/foundation'); | |
require('./modules/foundation-media-queries'); | |
require('./modules/slider'); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var spawn = require('child_process').spawn; | |
var browserSync = require('browser-sync'); | |
var reload = browserSync.reload; | |
var runSequence = require('run-sequence'); | |
var penthouse = require('penthouse'); | |
var cleanCSS = require('clean-css'); | |
var fs = require('fs'); | |
// load plugins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* jshint node:true */ | |
'use strict'; | |
var gulp = require('gulp'); | |
var traceur = require('gulp-traceur'); | |
gulp.task('scripts', function () { | |
return gulp.src('js/main.js') | |
.pipe(traceur()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var penthouse = require('penthouse'); | |
var fs = require('fs'); | |
var cleanCSS = require('clean-css'); | |
gulp.task('penthouse', ['styles'], function () { | |
penthouse({ | |
url: ['http://chadwicks.dev'], | |
css: 'assets/css/application.css', | |
width: 480, | |
height: 800 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* globals $, jQuery, Foundation */ | |
/* jshint node:true */ | |
'use strict'; | |
window.MQ = (function(MQ, $, queries) { | |
/** | |
* $cache elements | |
* @type {Object} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// inject bower components | |
gulp.task('wiredep', function () { | |
gulp.src('./partials/*.php') | |
.pipe(wiredep({ | |
directory: './bower_components/' | |
})) | |
.pipe(gulp.dest('./partials')); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am tjFogarty on github. | |
* I am fogarty (https://keybase.io/fogarty) on keybase. | |
* I have a public key whose fingerprint is F16E EE8B 30A4 6EA4 8B9B 3293 9C3D FA76 F916 7210 | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Vimeo class to fetch thumbnails | |
* @example | |
* $video = new VimeoThumbnail(array( | |
* 'video_url' => $url | |
* )); | |
* echo $video->thumbnail; | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Detects using window.performance | |
* We can serve small images first, then upgrade on faster connections | |
* See: http://mattandrews.info/talks/port80-2013/#/ | |
*/ | |
(function () { | |
var perf = window.performance, | |
start = perf.timing.requestStart, // just before page is requested | |
end = perf.timing.responseStart, // first byte received |