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
.alertDot, .alertDotSpan { | |
text-align:center; | |
vertical-align:middle; | |
-webkit-transform-style:preserve-3d; | |
-webkit-transform-origin:left; | |
-webkit-transition:all 1s ease-in-out; | |
} | |
.alertDot { | |
display:inline-table; | |
margin:auto; |
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 alterClass plugin | |
* | |
* Remove element classes with wildcard matching. Optionally add classes: | |
* $( '#foo' ).alterClass( 'foo-* bar-*', 'foobar' ) | |
* | |
* Copyright (c) 2011 Pete Boere (the-echoplex.net) | |
* Updated 2013 by Mike Pouncy (scrupl.es) - Condensed code, removed unneeded vars. | |
* Free under terms of the MIT license: http://www.opensource.org/licenses/mit-license.php | |
* |
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 TextChange Plugin | |
* http://www.zurb.com/playground/jquery-text-change-custom-event | |
* | |
* Copyright 2010, ZURB | |
* Released under the MIT License | |
*/ | |
;(function(a) { | |
a.event.special.textchange = { | |
setup : function textchangeSetup() { |
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
/*jslint white: true, onevar: true, devel: true, undef: true, nomen: true, eqeqeq: true, plusplus: true, bitwise: true, regexp: true, strict: false, newcap: true, immed: true */ | |
/*globals window: false */ | |
/* Copied from http://www.adequatelygood.com/Finding-Improper-JavaScript-Globals.html */ | |
// Include this script BEFORE any scripts you want to scan for bad globals. | |
// After the scripts you want to scan, run BADGLOBALS.check() and watch firebug. | |
// This script will only work in Firefox or Chrome, NOT in Internet Explorer. | |
var BADGLOBALS = (function (window) { | |
var report, |
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 EXTENSIONS (CORE) | js/jquery-plugins.js | |
=====================================================================*/; | |
/** @fileOverview This file has functions related to extending jQuery. */ | |
/*-------------------------------------------------------------------*/ | |
(function($, window, undefined) { | |
"use strict"; |