This file contains 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 docpadConfig, | |
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }; | |
// The DocPad Configuration File | |
docpadConfig = { | |
// generated site at the root | |
// -------------------------- | |
// outputPath: '.' |
This file contains 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
// overriding typeahead | |
!function ($, biStrap) { | |
"use strict" | |
// defining standard namespace to wrap original bootstrap | |
// methods that needs to be overridden | |
biStrap.typeahead.show = $.fn.typeahead.Constructor.prototype.show; | |
$.fn.typeahead.Constructor.prototype.show = function(){ |
This file contains 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
// Media Queries in Sass 3.2 | |
// | |
// These mixins make media queries a breeze with Sass. | |
// The media queries from mobile up until desktop all | |
// trigger at different points along the way | |
// | |
// And important point to remember is that and width | |
// over the portrait width is considered to be part of the | |
// landscape width. This allows us to capture widths of devices | |
// that might not fit the dimensions exactly. This means the break |
This file contains 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
// valid for all dates from 2000 through 2099 | |
(function( $copy ) { | |
$copy.html( $copy.html().replace(/20[0-9]{2}/, function() { return new Date().getFullYear() }) ) | |
})( jQuery('#copy') ); |
This file contains 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
// ui component class structure | |
// ---------------------------- | |
(function(sandbox) { | |
'use strict'; | |
var Component = function(foo, bar) { | |
this.foo = foo; | |
this.bar = bar; |
This file contains 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
// ------------------------------ | |
// generic media query mixin | |
// ------------------------------ | |
// author: Anas Nakawa | |
// license: MIT | |
// ------------------------------ | |
// table of content | |
// ------------------------------ | |
// media-compact-retina (private) | |
// media-conpact-normal (private) |
This file contains 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
// tiny JavaScript inheritance | |
// extracted from CoffeeScript | |
// | |
// * **param:** {Class} child | |
// * **param:** {Class} parent | |
var extends = function( child, parent ) { | |
for ( var key in parent ) { | |
if ( {}.hasOwnProperty.call( parent, key ) ) { | |
child[ key ] = parent[ key ]; | |
} |
This file contains 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
// AMD / Common Js / Browser Wrapper pattern | |
// copyright to [millermedeiros](https://github.com/millermedeiros/js-signals/blob/master/src/wrapper.js) | |
// --------------------------------- | |
(function(global){ | |
var libName; | |
// define your library | |
//exports to multiple environments | |
if(typeof define === 'function' && define.amd){ //AMD |
This file contains 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
/** | |
* calculate how much templates has been sold on ThemeForest during last week for any category | |
* for example: | |
* - open themeforest.net > Wordpress > Popular Items | |
* - open the javascript console | |
* - paste this snippet | |
* _ ... BAM! | |
*/ | |
(function($, console){ | |
var total = 0; |
This file contains 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
// adding default value when initializing an observable | |
// for later resetting, preventing the observable from | |
// becoming undefined ( still you can set it to `null` ) | |
// ==================================================== | |
// example[1]: primitive types ( passed by value ) | |
// ----------------------------------------------- | |
// var username = ko.observable().default( 'guest' ); | |
// username(); // 'guest' | |
// username( 'admin' ); // 'admin' | |
// username( undefined ); // 'guest' |