Skip to content

Instantly share code, notes, and snippets.

View jacobdubail's full-sized avatar

Jacob Dubail jacobdubail

View GitHub Profile
@jacobdubail
jacobdubail / pubsub.js
Created October 14, 2011 22:57 — forked from ryanflorence/pubsub.js
JavaScript: Simple Pub/Sub
!function () {
var channels = {};
this.subscribe = function (channel, subscription) {
if (!channels[channel]) channels[channel] = [];
channels[channel].push(subscription);
};
this.publish = function (channel) {
if (!channels[channel]) return;
@jacobdubail
jacobdubail / dabblet.css
Created January 11, 2012 03:33 — forked from TomMalbran/dabblet.css
CSS: Nice Tabs
/**
* Nice Tabs
*/
.tabrow {
position: relative;
text-align: center;
list-style: none;
margin: 0;
padding: 0;
@jacobdubail
jacobdubail / gist:2571460
Created May 1, 2012 21:16
HTML: basicpage (static)
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="ie ie6 no-js" > <![endif]-->
<!--[if IE 7 ]> <html class="ie ie7 no-js" > <![endif]-->
<!--[if IE 8 ]> <html class="ie ie8 no-js" > <![endif]-->
<!--[if IE 9 ]> <html class="ie ie9 no-js" > <![endif]-->
<!--[if gt IE 9]><!--><html class="no-js" ><!--<![endif]-->
<head>
@jacobdubail
jacobdubail / CSS - Colorbox
Created May 25, 2012 19:59
CSS: Colorbox
#colorbox,
#cboxOverlay,
#cboxWrapper { position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay { position:fixed; width:100%; height:100%;}
#cboxMiddleLeft,
#cboxBottomLeft {clear:left;}
#cboxContent { position:relative;}
#cboxLoadedContent { overflow:auto;}
#cboxTitle { margin:0;}
#cboxLoadingOverlay,
@jacobdubail
jacobdubail / WP: Register Taxonomy
Created June 5, 2012 16:49
WP: Register Taxonomy
add_action( 'init', 'create_book_taxonomies', 0 );
//create two taxonomies, genres and writers for the post type "book"
function create_book_taxonomies()
{
// Add new taxonomy, make it hierarchical (like categories)
$labels = array(
'name' => _x( 'Genres', 'taxonomy general name' ),
'singular_name' => _x( 'Genre', 'taxonomy singular name' ),
'search_items' => __( 'Search Genres' ),
@jacobdubail
jacobdubail / gist:5113428
Created March 8, 2013 01:10
Filter Gravity Forms checkboxes based on user_meta value
<?php
add_filter( "gform_field_content", "mz_disable_completed_series", 10, 5 );
function mz_disable_completed_series( $content, $field, $value, $lead_id, $form_id ) {
//only manipulating checkboxes for form id 1
if ( $form_id != 1 )
return $form;
if( tribe_is_month() && !is_tax() ) { // The Main Calendar Page
} elseif( tribe_is_month() && is_tax() ) { // Calendar Category Pages
} elseif( tribe_is_event() && !tribe_is_day() && !is_single() ) { // The Main Events List
} elseif( tribe_is_event() && is_single() ) { // Single Events
} elseif( tribe_is_day() ) { // Single Event Days
@include keyframe(fadeout) {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@mixin center-align($dir: false) {
$map: (
top: ( Y ),
left: ( X )
);
@if map_get($map, $dir) != null {
#{$dir}: 50%;
transform: #{"translate#{map_get($map,$dir)}(-50%)"};
} @else {