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
<bar> | |
<p>bar</p> | |
</bar> |
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
Object.defineProperty(Object.prototype, 'promise', { | |
get: function() { | |
return new Proxy({}, { | |
get: (target, name) => { | |
return new Promise((resolve) => { | |
this[name] = resolve | |
}) | |
} | |
}) | |
}, |
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
<my-form> | |
<form onsubmit={ onSubmit }> | |
<div class="form-group"> | |
<label for="name">Name</label> | |
<input class="form-control" required name="name" id="name" onchange={ changeName }> | |
</div> | |
<button type="submit" disabled={ !isValid }>Submit</button> | |
</form> | |
</my-form> |
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
javascript:void(function(){var b=document.body;b.style.filter='blur(30px)';b.style.webkitFilter='blur(30px)';b.style.oFilter='blur(30px)';b.style.msFilter='blur(30px)'}()) |
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
/** | |
* Check if any css property is supported | |
* @param { String } property - css property to test for example 'column-count' | |
* @param { String } value - check whether a value is to a css property is supported | |
* @returns { String|Array|Boolean } either only the property in camel case, or the property and its value | |
* 4 ex: | |
* supportCss('column-count') => 'MozColumnCount' | |
* supportCss('column-count', '2') => ['MozColumnCount', '2'] | |
* supportCss('position', 'sticky') => ['position', '-webkit-sticky'] | |
*/ |
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
<my-tag> | |
<p>{ opts.msg }</p> | |
</my-tag> |
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 scrollTo = function(el) { | |
$('html, body').animate({ | |
scrollTop: el instanceof $ ? el.offset().top : typeof el === 'number' ? el : $('#' + el).offset().top | |
}) | |
} |
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
export default { | |
/** | |
* Similar it handles any kind of ajax request | |
* @param { string } url url to call | |
* @param { string } type ajax request type | |
* @return { promise } | |
*/ | |
ajax(url, type = 'get') { | |
return new Promise((resolve, reject) => { | |
var request = new XMLHttpRequest() |
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
String.prototype.template = function (object) { | |
// Andrea Giammarchi - WTFPL License | |
var | |
stringify = JSON.stringify, | |
re = /\$\{(.*?)\}/g, | |
evaluate = [], | |
i = 0, | |
m | |
; | |
while (m = re.exec(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/env ruby | |
# 1. Install hunspell | |
# $ brew install hunspell | |
# 2. Download a dictionary and install it in a path listed by `hunspell -D` | |
# $ open http://wiki.services.openoffice.org/wiki/Dictionaries | |
# 3. Move this file into your repository | |
# $ mv commit-msg /path/to/repo/.git/hooks |