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
[ | |
{ | |
"iso": "af", | |
"tel": "93", | |
"name": "Afghanistan" | |
}, | |
{ | |
"iso": "za", | |
"tel": "27", | |
"name": "Afrique du sud" |
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(DOMTokenList.prototype, 'switch', { | |
writable: false, | |
enumerable: false, | |
configurable: false, | |
value (...list) { | |
const el = this | |
const matchedClass = list.filter(cls => el.contains(cls)) | |
if (!matchedClass.length) { |
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
/** Static properties **/ | |
// Creates an array from a String | |
// Output ['🍎', '🍌', '🍇'] | |
// https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Global_Objects/Array/from | |
Array.from('🍎🍌🍇') | |
// Check for an array | |
// Output true | |
// https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray |
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
const setCheckboxLimit = (list, limit, warning = false) => { | |
if (!list) return | |
const checkboxes = list.querySelectorAll('input[type="checkbox"]') | |
if (!checkboxes.length) return | |
checkboxes.forEach(checkbox => checkbox.addEventListener('click', event => { | |
const checkedChecks = list.querySelectorAll('input[type="checkbox"]:checked') | |
if (checkedChecks.length >= limit + 1) { |
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
const headings = [ ... document.querySelectorAll('h1') ] | |
[{id: 1}, {id: 2}].map(x => x.id) | |
// [1,2] | |
// By @coderitual | |
// https://twitter.com/coderitual/status/1112297299307384833 | |
// Remove any duplicates from an array of primitives. |
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
function compare (object1, object2) { | |
let result = [] | |
Object.keys(object1).forEach(key => { | |
if (object1[key] !== object2[key]) { | |
result.push(object2[key]) | |
} | |
}) | |
return result |
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
el.addEventListener('touchstart', event => { start(event.touches[0].clientX, event.touches[0].clientY) }, false) | |
el.addEventListener('touchmove', event => { swipe(event.touches[0].clientX, event.touches[0].clientY) }, false) | |
el.addEventListener('mousedown', event => { start(event.clientX, event.clientY) }, false) | |
el.addEventListener('mousemove', event => { swipe(event.clientX, event.clientY) }, false) | |
let xDown = null | |
let yDown = null | |
function start (x, y) { | |
xDown = x |
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
<?php | |
class Social_Walker extends Walker_Nav_Menu { | |
function start_el(&$output, $item, $depth, $args) { | |
$classes = empty( $item->classes ) ? array() : (array) $item->classes; | |
$link_class = $classes[0]; | |
$link_target = $item->target == '' ? '' : 'target="'.$item->target.'"'; | |
unset($classes[0]); | |
$output .= '<li class="'. join($classes, ' ') .'">' |
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
function getSiblings(element) { | |
Array.prototype.filter.call(element.parentNode.children, function (child) { | |
return child !== element; | |
}); | |
} |
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
/*! | |
* | |
* Version : | |
* Emmanuel B. (www.emmanuelbeziat.com) | |
* https://github.com/EmmanuelBeziat/ | |
**/ | |
(function (root, factory) { | |
if (typeof define === 'function' && define.amd) { | |
// AMD. Register as an anonymous module. |
NewerOlder