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
/*! | |
Video.js Default Styles (http://videojs.com) | |
Version 4.2.1 | |
Create your own skin at http://designer.videojs.com | |
*/ | |
/* SKIN | |
================================================================================ | |
The main class name for all skin-specific styles. To make your own skin, | |
replace all occurances of 'vjs-default-skin' with a new name. Then add your new | |
skin name to your video tag instead of the default skin. |
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
$(function(){ | |
$('.foo').on('click', 'a', function(ev) { | |
// logs .foo as a jQuery object | |
console.log($(ev.delegateTarget)); | |
}); | |
}); |
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
/* Extend a jQuery Selector to the Widget Options | |
* =================================================== | |
* Use: Boilerplate for adding a reference to the | |
* original jQuery selector used to instantiate a | |
* widget, which can then be accessed inside of a | |
* patched/custom jQuery UI method. | |
* | |
* Replace WIDGET with the name of the jQuery UI widget | |
* Replace METHOD with the name of the jQuery UI widget | |
* method you are patching |
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
<iframe allowfullscreen="" webkitallowfullscreen="" mozallowfullscreen=""></iframe> |
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
/* ============================================================================= | |
CSS Declarations | |
========================================================================== */ | |
/* ==|== The Standard Way =================================================== */ | |
.foo::before { | |
/* ...css rules... */ | |
} |
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.dialog.prototype._makeDraggable = function() { | |
this.uiDialog.draggable({ | |
containment: false, | |
handle: '.ui-dialog-titlebar' | |
}); | |
}; |
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
/* | |
* jQuery - Uncheck Checkboxes - 05/17/2011 | |
* http://corydorning.com | |
* | |
* Dual licensed under 'Use it like you stole it' | |
* and 'I Don't Care'. | |
* | |
* Description: Uncheck any checkeboxes that might | |
* be checked. Simple, yet effective, particularly | |
* for how I needed to use it with AJAX. |
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
try { | |
$.browser.msie && $.browser.version < 7 | |
&& document.execCommand( 'BackgroundImageCache', false, true ); | |
} catch(e) { }; |
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
/* | |
* jQuery Table Striping - v0.1 - 05/12/2011 | |
* http://corydorning.com, http://justinrains.com | |
* | |
* Dual licensed under 'Use it like you stole it' | |
* and 'We Don't Care'. | |
* | |
* Description: Stripe table rows easily by calling 'stripeRows' | |
* on any collection of <tr> elements and passing in the desired | |
* colors. |