I hereby claim:
- I am jackmcpickle on github.
- I am jackmcpickle (https://keybase.io/jackmcpickle) on keybase.
- I have a public key ASA6l_H5wRrcj_wNXT9I9lGKy80urTP9usBAcZMIFCXjLwo
To claim this, I am signing this object:
@import "include-media"; | |
@mixin screen-media($query) { | |
@include media('screen', $query) { | |
@content | |
} | |
} | |
@include screen-media('>desktop') { |
@import "include-media"; | |
.thing { | |
@include media( '>phone', 'landscape') { | |
padding: 0 1.5em; | |
} | |
@include media( '>phone', 'portrait' ) { | |
padding: 2em 3em 1em 3em; | |
} | |
} |
# Make Tab autocomplete regardless of filename case | |
set completion-ignore-case on | |
# List all matches in case multiple possible completions are possible | |
set show-all-if-ambiguous on | |
# Immediately add a trailing slash when autocompleting symlinks to directories | |
set mark-symlinked-directories on | |
# Use the text that has already been typed as the prefix for searching through |
I hereby claim:
To claim this, I am signing this object:
{ | |
init: function(elevators, floors) { | |
this.elevator = elevators[0]; // Let's use the first elevator | |
this.setupListeners(floors) | |
}, | |
update: function(dt, elevators, floors) { | |
this.checkIndicators() |
<?php | |
add_action('init', 'update_business_thumbnails'); | |
function update_business_thumbnails() | |
{ | |
if (!isset($_GET['update_thumbnails'])) return ; | |
$args = [ | |
'post_type' => 'attachment', |
import throttle from 'lodash/throttle'; | |
import map from 'lodash/map'; | |
class ScrollSpy | |
{ | |
$targets: Element[]; | |
$navItems: JQuery<HTMLElement>; | |
observer: IntersectionObserver; | |
threshold: number; | |
activeClass: string; |
files: | |
include: '**/*.scss' | |
options: | |
formatter: stylish | |
merge-default-rules: falserailing-semicolon | |
rules: | |
bem-depth: | |
- 0 | |
- max-depth: 1 | |
border-zero: |
var $contactForm = $('#contactForm'), | |
$submitButton = $('#submitForm'), | |
$message = $('.js-error-messages'), | |
$honeypot = $('.js-honey'), | |
$emailField = $('.js-email-field'); | |
var resetButton = function(timeout) { | |
setTimeout(function() { | |
$submitButton.text('Send').prop('disabled', false); | |
}, timeout); |
FROM sealink/craftdocker:2.6.2791 | |
# install plugins | |
COPY composer.json /app/ | |
COPY composer-post-install /app/ | |
COPY vendor /app/vendor | |
RUN composer install | |
# node packages | |
COPY package.json /app/ |