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
| function quantityInput() { | |
| $('<div class="quantity-button quantity-up">+</div><div class="quantity-button quantity-down">-</div>').insertAfter('.quantity input[type="number"]'); | |
| $('.quantity').each(function() { | |
| var spinner = $(this), | |
| input = spinner.find('input[type="number"]'), | |
| btnUp = spinner.find('.quantity-up'), | |
| btnDown = spinner.find('.quantity-down'), | |
| min = input.attr('min'), | |
| max = input.attr('max'); | |
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
| window.setTimeout(function () { | |
| $(function () { | |
| $("#converter").submit(function(){return false;}); | |
| $("#rgba").bind('keyup change', function () { | |
| var value = $(this).val(); | |
| setHex(value); | |
| }); | |
| $("#hex").bind('keyup change', function () { | |
| var value = $(this).val(); | |
| setRgba(value); |
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
| function gg_gfonts_prefetch() { | |
| echo '<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>'; | |
| echo '<link rel="preconnect" href="https://fonts.googleapis.com/" crossorigin>'; | |
| } | |
| add_action( 'wp_head', 'gg_gfonts_prefetch' ); |
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
| * { | |
| caret-color: transparent; | |
| } | |
| input, textarea { | |
| caret-color: auto; | |
| } |
OlderNewer