This file contains hidden or 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
jQuery.each(jQuery('td'), function (index, value) { | |
if (jQuery(value).text().match(/\.|,5/g) !== null) { | |
jQuery(value).html( | |
jQuery(value).text().replace(/\.|,5/g, "") + | |
"<i class=\"fraction\">½</i>" | |
); | |
} | |
}); |
This file contains hidden or 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
.modal-inner-wrap { | |
max-height: 100%; | |
overflow-y: auto; | |
&::-webkit-scrollbar { | |
background: transparent; | |
} | |
} |
This file contains hidden or 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
<header> | |
<div class="nav-toggle"> | |
<span></span> | |
<span></span> | |
<span></span> | |
<span></span> | |
</div> | |
</header> |
This file contains hidden or 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 | |
$relatedMeta = get_post_meta(get_the_ID(), 'related_posts', false); | |
$related = explode(" ", $relatedMeta[0]); | |
?> | |
<?php if ($relatedMeta): ?> | |
<div class="related-posts"> | |
<?php foreach($related as $item): ?> | |
<div class="related-post"> | |
<a href="<?php echo get_permalink($item) ?>"> |
This file contains hidden or 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
let textareaCounter = (function() { | |
'use strict'; | |
let textareas = document.querySelectorAll('textarea'); | |
for (let i = 0; i < textareas.length; ++i) { | |
if(textareas[i].hasAttribute('maxlength')) { | |
let chars = 0, | |
counter = document.createElement('SPAN'), | |
maxLength = textareas[i].getAttribute('maxlength'), |
This file contains hidden or 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
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/> |
This file contains hidden or 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
<img data-bind="attr: { src: require.toUrl('images/shirt.jpg') }" alt="Shirt"> |
This file contains hidden or 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
{ | |
"name": "showcase", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"keywords": [], | |
"author": "", |
This file contains hidden or 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
{ | |
"name": "verytemp", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1", | |
"start": "node index.js" | |
}, | |
"keywords": [], |
This file contains hidden or 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
{ | |
"name": "verytemp", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1", | |
"start": "node index.js", | |
"sass": "npx gulp sass" | |
}, |
OlderNewer