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
# frozen_string_literal: true | |
module Tesseract | |
module Transaction | |
module Steps | |
# Executes the step in a background job. Argument is either an ActiveJob | |
# or another Transaction (or anything that implements `#perform_later`. | |
# | |
# If the provided transaction implements a `validate` step, then that | |
# validator will be called on the input before the job is enqueued. This |
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
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
open DIR, "ls -1 |"; | |
while (<DIR>) | |
{ | |
chomp; | |
next if ( -d "$_"); # skip directories |
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
tinymce.PluginManager.add('smartquotes', function(editor) { | |
function convert(e) { | |
rootNodes = editor.dom.select("body > *"); | |
for (var i = 0; i < rootNodes.length; i++) { | |
var el = rootNodes[i]; | |
var contentEditable = editor.dom.getAttrib(el, "contenteditable"); | |
if (contentEditable !== "false") { | |
convertBlock(el); |
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
<!-- Pretend this is a JSX block --> | |
<div> | |
<TouchPreview previewClassName="link--preview"> | |
<a href="/foo"> | |
Hello | |
</a> | |
</TouchPreview> | |
</div> |
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
var views = { | |
foo: function($el, el, props) { | |
console.log(props); | |
}, | |
bar: function($el, el, props) { | |
console.log(props); | |
}, | |
fooBar: function($el, el, props) { | |
console.log(props); | |
} |
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
// Generate inline class names for your elements | |
// | |
// <div class="actions inset-vert-small-large"> | |
// <button type="submit">Totes click me!</button> | |
// </div> | |
// | |
// Padding | |
// --------------- | |
// pad-{item} : pad-small (padding: 10px) | |
// pad-vert-{item}-{item + 1} : pad-vert-small-large (padding: 10px 0 40px 0) |
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
// Configurables | |
$flexibleGridColumns: 24 !default; | |
$flexibleGridColumnWidth: 30px !default; | |
$flexibleGridGutterWidth: 18px !default; | |
// Full width of a row | |
$flexibleGridRowWidth: ($flexibleGridColumns * $flexibleGridColumnWidth) + ($flexibleGridGutterWidth * ($flexibleGridColumns - 1)); | |
// The width of a column | |
$flexibleGridGridWidth: percentage($flexibleGridColumnWidth / $flexibleGridRowWidth); |
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
// 8-column grid where each columns is 12.5% | |
%grid { | |
display: inline; | |
float: left; | |
clear: none; | |
} | |
%grid-2 { | |
@extend %grid; |
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
// Configurables | |
$flexiColumns: 24 !default; | |
$flexiColumnWidth: 30px !default; | |
$flexiGutterWidth: 18px !default; | |
// Full width of a row | |
$flexiRowWidth: ($flexiColumns * $flexiColumnWidth) + ($flexiGutterWidth * ($flexiColumns - 1)); | |
// The width of a column | |
$flexiGridWidth: percentage($flexiColumnWidth / $flexiRowWidth); |
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
$(document).ready(function() { | |
google.load("books", "0"); | |
var viewerHeight; | |
var headerHeight; | |
var btn = $('#viewerButton'); // Single ref. | |
var viewer = $('#viewerContainer'); | |
function viewerInit() { |
NewerOlder