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 controlDate = new Date(); | |
controlDate.toString(); | |
// -> "Thu Jun 20 2019 11:16:28 GMT+0200 (Central European Summer Time)" | |
controlDate.toDateString(); | |
// -> "Thu Jun 20 2019" | |
controlDate.toUTCString(); | |
// -> "Thu, 20 Jun 2019 09:15:28 GMT" |
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
import React, { useState, useRef } from "react"; | |
import { render, cleanup } from "react-testing-library"; | |
import useCallbackRef from "./useCallbackRef"; | |
function TestInputRef<T = HTMLInputElement>({ | |
id = "test", | |
onSet, | |
onChange | |
}: { | |
id?: string; |
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
Country Code | State Code | ZIP/Postcode | City | Rate % | Tax Name | Priority | Compound | Shipping | Tax Class | |
---|---|---|---|---|---|---|---|---|---|---|
AT | * | * | * | 20 | USt | 1 | 0 | 1 | ||
BE | * | * | * | 21 | TVA | 1 | 0 | 1 | ||
BG | * | * | * | 20 | ДДС | 1 | 0 | 1 | ||
CY | * | * | * | 19 | ΦΠΑ | 1 | 0 | 1 | ||
CZ | * | * | * | 21 | DPH | 1 | 0 | 1 | ||
DE | * | * | * | 19 | MwSt | 1 | 0 | 1 | ||
DK | * | * | * | 25 | moms | 1 | 0 | 1 | ||
EE | * | * | * | 20 | km | 1 | 0 | 1 | ||
ES | * | * | * | 21 | IVA | 1 | 0 | 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
$('[data-fancybox]').fancybox() |
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
/** | |
* Change the loaded partial for the carousel-image-args to support Fancybox v3 | |
*/ | |
public function mytheme_jetpack_tiled_gallery_partial ( $file, $name, $context ) | |
{ | |
// Point to the local partial for the carousel-image-args | |
if ( $name === 'carousel-image-args' ) | |
{ | |
return get_stylesheet_directory() . "/partials/tiled-gallery-carousel-image-args.php"; | |
} |
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
data-fancybox="gallery" | |
data-src="<?php echo esc_url( $item->large_file() ); ?>" | |
data-srcset="<?php echo esc_url( $item->large_file() ); ?> 1200w, <?php echo esc_url( $item->medium_file() ); ?> 640w" | |
data-width="<?php echo esc_attr( $item->meta_width() ); ?>" | |
data-height="<?php echo esc_attr( $item->meta_height() ); ?>" | |
data-caption="<?php echo esc_attr( wptexturize( $item->image->post_title ) ); ?>" |
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 | |
// Detect any specific server environment config setup to apply | |
// I use a custom variable where you can set like so in Apache VirtualHost or in .htaccess: | |
// `SetEnv HTTP_SERVER_ENVIRONMENT "staging" | |
// Default: development | |
$server_environment = 'development'; | |
if ( ! empty( $_SERVER['HTTP_SERVER_ENVIRONMENT'] ) ) { | |
$server_environment = $_SERVER['HTTP_SERVER_ENVIRONMENT']; | |
} |
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 | |
// Detect any specific server environment config setup to apply | |
// Default: development | |
$server_environment = 'development'; | |
if ( ! empty( $_SERVER['HTTP_SERVER_ENVIRONMENT'] ) ) { | |
$server_environment = $_SERVER['HTTP_SERVER_ENVIRONMENT']; | |
} | |
// Load the server environment config |
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
.modal { | |
.ui-lvl99-modal(@ns: ‘modal’); | |
.-modal-init-default({ | |
background: red; | |
padding: 40px; | |
}); | |
} | |
// ... would output the following CSS | |
.modal { |
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
// Modal Mixin Class | |
// @param @ns Namespaces the custom state classes | |
.ui-lvl99-modal(@ns: ~"lvl99-modal") { | |
.ui-lvl99-toggleable(@ns); | |
// Special mixin to apply any rules to the default class | |
// If you feel you wouldn’t need to reuse this class definition in other components, you could | |
// just define it in the main body of the mixin class definition | |
.-modal-class-default(@rules: {}) { | |
position: fixed; |
NewerOlder