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
/* | |
classToggler.js | |
by Kodie Grantham - https://kodieg.com | |
Toggles a className for target elements when actions are performed on trigger elements (optionally only on a range of screen sizes) | |
Parameters: | |
- triggerSelector [Default: '[data-class-toggle]'] - A selector string for the trigger element(s) | |
- defaultTargetSelector [Default: '[data-class-toggle-target]'] - The selector string for the target element(s) if the triggered element does not have a data-class-toggle attribute set to a string | |
- defaultClassName [Default: 'open'] - The class to toggle if the triggered element does not have a data-class-toggle-name attribute set to a string |
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
<?php | |
// For use with https://github.com/adhocore/php-cli | |
// Color names taken from https://www.ditig.com/publications/256-colors-cheat-sheet | |
// Some color names are duplicated with different values :shrug: | |
// Swap fg256 with bg256 for background color value | |
$black = \Ahc\Cli\Output\Color::BLACK; | |
$red = \Ahc\Cli\Output\Color::RED; | |
$green = \Ahc\Cli\Output\Color::GREEN; | |
$yellow = \Ahc\Cli\Output\Color::YELLOW; | |
$blue = \Ahc\Cli\Output\Color::BLUE; |
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
for d in */ ; do echo "Checking for changes in $d..."; cd $d; if [[ `git status --porcelain` ]]; then echo "\033[0;32mChanges found in $d\033[0m"; fi; cd ../; done |
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
// BUG | |
// Sometimes a newly opened modal sets the image height to zero | |
// Stupid ios menu bar showing/hiding counts as a screen resize | |
// Can't calculate height with padding before resize to adjust top positioning | |
// - After resize, calculate the difference between the height of the content | |
// and the height of the image-holder and set the top of the content to | |
// scrollTop + the difference in top height | |
// ------------------------------------------------------------------------------- |
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 wrap text plugin | |
*/ | |
;(function($) { | |
function WrapText(options) { | |
this.options = $.extend({ | |
holder: '.wrap-text', | |
wrapBefore: '<span>', | |
wrapAfter: '</span>', | |
wrapTag: 'span', |
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 sticky box plugin | |
*/ | |
;(function($, $win) { | |
'use strict'; | |
function StickyScrollBlock($stickyBox, options) { | |
this.options = options; | |
this.$stickyBox = $stickyBox; | |
this.init(); |
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 Open/Close plugin | |
*/ | |
;(function($) { | |
function OpenClose(options) { | |
this.options = $.extend({ | |
addClassBeforeAnimation: true, | |
hideOnClickOutside: false, | |
activeClass: 'active', | |
opener: '.opener', |
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
/* | |
* Responsive Layout helper | |
*/ | |
ResponsiveHelper = (function($){ | |
// init variables | |
var handlers = [], | |
prevWinWidth, | |
win = $(window), | |
nativeMatchMedia = false; |
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
<?php | |
/** | |
* Customized version of the Category Filter that includes CSS classes for subcategories | |
* New filter available in WP-Admin > Events > Settings > Filters | |
*/ | |
if ( class_exists( 'Tribe__Events__Filterbar__Filters__Category' ) ) { | |
class Tribe__Events__Filterbar__Filters__Category_Custom extends Tribe__Events__Filterbar__Filters__Category { |
NewerOlder