I hereby claim:
- I am joeyfigaro on github.
- I am joeyfigaro (https://keybase.io/joeyfigaro) on keybase.
- I have a public key ASCye24coVd2PZFMzJ4-CE6l8geKt16R5jgtGWnR1T_U4Ao
To claim this, I am signing this object:
@mixin verticalLoop($vertical) { | |
$vertical-image-path: "#{$image-path-content}/icons/verticals/"; | |
@each $color in color-black, color-white, color-honeycomb, color-clementine, | |
color-slushie, color-frosting, color-aloe, color-berry, color-wasabi, | |
color-grape, color-spice, color-wine, color-whale, color-honeycombLight, | |
color-clementineLight, color-slushieLight, color-frostingLight, | |
color-teaLight, color-berryLight, color-grapeLight, color-grayLightest, | |
color-grayLighter, color-grayLight, color-gray, color-grayDark, | |
color-grayDarker, color-grayDarkest { | |
&.vertical-icon { |
<% content_for :navigation do %> | |
<%= render "shared/primary_nav", locals: {} %> | |
<% end %> | |
<% content_for :market_countdown do %> | |
<%= render "shared/market_countdown", locals: { visibility_class: 'visible'} %> | |
<% end %> | |
<div id="market-order"></div> |
<div class="file-upload"> | |
<span class="file-upload__file-chosen">No file chosen</span> | |
<input type="file" id="<input_id>" name="<input_id>"> | |
<label class="button bc-green" for="<input_id>">Choose a File</label> | |
</div> |
<div class="checkbox"> | |
<input type="checkbox" name="builds" id="<input_id>" value="<input_value>"> | |
<label for="<input_id>">TEXT HERE</label> | |
</div> |
'.source.css.scss': | |
'MX-Component': | |
'prefix': 'component', | |
'body': """ | |
//////////////////////////////////////////////// | |
// | |
// MX Component | |
// Hero Adventurer <[email protected]> | |
// 10.03.16 @ 10:40am | |
// |
I hereby claim:
To claim this, I am signing this object:
<button class="button-badass">Badass Button</button> | |
<button class="button-coffee">Coffee Button</button> | |
<button class="button-decaff">Decaff Button</button> |
<header> | |
<h1></h1> | |
</header> |
$(function() { | |
$('.chat-widget--connected__new-message input[type="text"]').on('keydown keyup change', function() { | |
console.log('hey'); | |
}); | |
}) |
from django import template | |
from django.template.defaultfilters import linebreaksbr | |
from django.utils.html import escape | |
try: | |
from django.utils.safestring import mark_safe | |
except ImportError: # v0.96 and 0.97-pre-autoescaping compat | |
def mark_safe(x): return x | |
from pprint import pformat | |
def rawdump(x): |