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
/* | |
* jquery.xgradient.js | |
* http://blog.mach3.jp/ | |
* | |
* Publish Date : 2010/5/13 | |
* Requirement : jQuery 1.4 or later | |
* http://jquery.com/ | |
* | |
* Copyright 2010, Mach3 | |
*/ |
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
/** | |
* Grunt task for pngquant | |
* ----------------------- | |
*/ | |
// @example: | |
// | |
// pngquant: { | |
// options: { | |
// preserve_mtime: true |
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
(function($, undefined){ | |
/** | |
* Get all custom attributes | |
* @param HTMLElement el | |
* @return Object | |
*/ | |
$.getAttributes = function(el){ | |
var $el, data, add, i; | |
$el = $(el); |
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
(function($){ | |
/** | |
* Detect support of css transition, event name | |
*/ | |
$.support.transitionInfo = (function(){ | |
var el, names, name, info = null; | |
el = document.createElement("div"); | |
names = { | |
"WebkitTransition": "webkitTransitionEnd", |
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
(function($){ | |
/** | |
* Detect supports | |
*/ | |
$.support.touchEvents = "ontouchstart" in document; | |
$.support.msPointerEvents = window.navigator.msPointerEnabled; | |
/** | |
* Swipe event 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
(function(win, doc){ | |
var Assets = function(){ | |
this.items = []; | |
this.nodes = []; | |
this.attrs = { | |
callback: null, | |
append: true | |
}; | |
}; |
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
(function(win, doc){ | |
/** | |
* Namespace | |
* --------- | |
*/ | |
var ns = win._harvest = {}; | |
/** | |
* Loader |
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
(function($, win, doc){ | |
$.peekaboo = { | |
DATA_INIT: "peekabooInit", | |
DATA_MODE_FULL: "peekabooFullMode", | |
DATA_SHOW: "peekabooShow", | |
EVENT_SHOW: "peekabooShow", | |
EVENT_HIDE: "peekabooHide", |
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
(function(global){ | |
/** | |
* ZenHan | |
* ------ | |
*/ | |
var ZenHan = Backbone.Model.extend({ | |
/** | |
* Attributes: |
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
(function($, doc){ | |
/** | |
* vmlImage | |
* -------- | |
*/ | |
var vmlImage = { | |
/** | |
* Attributes: |