Kraken
- Kraken
Scripts
- Buoy
- Astro
- Drop
- Houdini
/** | |
* Remove whitespace from a string | |
* @private | |
* @param {String} string | |
* @returns {String} | |
*/ | |
var trim = function ( string ) { | |
return string.replace(/^\s+|\s+$/g, ''); | |
}; |
(function (root, factory) { | |
if ( typeof define === 'function' && define.amd ) { | |
define([], factory(root)); | |
} else if ( typeof exports === 'object' ) { | |
module.exports = factory(root); | |
} else { | |
root.myPlugin = factory(root); | |
} | |
})(typeof global !== "undefined" ? global : this.window || this.global, function (root) { |
/** | |
* Merge defaults with user options | |
* @private | |
* @param {Object} defaults Default settings | |
* @param {Object} options User options | |
* @returns {Object} Merged values of defaults and options | |
*/ | |
var extend = function ( defaults, options ) { | |
var extended = {}; | |
var prop; |
/*! loadJS: load a JS file asynchronously. [c]2014 @scottjehl, Filament Group, Inc. (Based on http://goo.gl/REQGQ by Paul Irish). Licensed MIT */ | |
function loadJS( src ){ | |
'use strict'; | |
var ref = window.document.getElementsByTagName( 'script' )[ 0 ]; | |
var script = window.document.createElement( 'script' ); | |
script.src = src; | |
ref.parentNode.insertBefore( script, ref ); | |
return script; | |
} |
Kraken
Scripts
# Terminal Cheat Sheet | |
pwd # print working directory | |
ls # list files in directory | |
cd # change directory | |
~ # home directory | |
.. # up one directory | |
- # previous working directory | |
help # get help | |
-h # get help |
/** | |
* Get closest DOM element up the tree that contains a class, ID, or data attribute | |
* @param {Element} elem The base element | |
* @param {String} selector The class or data attribute to look for | |
* @return {Boolean|Element} False if no match | |
*/ | |
var getClosest = function (elem, selector) { | |
var firstChar = selector.charAt(0); |
{ | |
"color_scheme": "Packages/Monokai Extended/Monokai Extended.tmTheme", | |
"find_selected_text": true, | |
"font_face": "Menlo", | |
"font_size": 14.0, | |
"highlight_line": true, | |
"hot_exit": false, | |
"ignored_packages": | |
[ | |
"Vintage" |
Sometimes you want to have a subdirectory on the master
branch be the root directory of a repository’s gh-pages
branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master
branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist
.
Remove the dist
directory from the project’s .gitignore
file (it’s ignored by default by Yeoman).
(function (root, factory) { | |
if ( typeof define === 'function' && define.amd ) { | |
define('myPlugin', factory(root)); | |
} else if ( typeof exports === 'object' ) { | |
module.exports = factory(root); | |
} else { | |
root.myPlugin = factory(root); | |
} | |
})(typeof global !== "undefined" ? global : this.window || this.global, function (root) { |