| Situation | With Base | With Variant |
|---|---|---|
| Text → Heading 1 | “Select the Text element, then choose Heading 1 as its base style.” | “Select the Text element, then choose the Heading 1 variant.” |
| Paragraph → Heading 2 | “To turn this into a Heading 2, open the Base dropdown and choose Heading 2.” | “To turn this into a Heading 2, open the Variant dropdown and choose Heading 2.” |
| Button → Link | “This button sho |
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
| <!DOCTYPE html> | |
| <html class="no-js" lang="en-US"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link rel="profile" href="https://gmpg.org/xfn/11"> | |
| <title>TEST</title> | |
| <style> | |
| html, |
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
| 1. RX Multi -> switch 6 and 7 on. Others are off. | |
| 2. Start pairing in UR mode in the car's homelink | |
| 3. RX Multi -> Press S1 or S2 | |
| 4. Press the homelink button in the car for 1sec multiple times. | |
| RX Multi's led should flash and you are ready. |
@edit: the original posts markdown is messed up
Here is the official documentation how PTP Pointer events should work in Edge: https://blogs.windows.com/msedgedev/2017/12/07/better-precision-touchpad-experience-ptp-pointer-events/
<canvas height=400 width=400 id="canvas" style="touch-action: none;"></canvas>
document.getElementById('canvas').addEventListener('pointermove', function(event) {
console.log('pointermove!');
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(window).on("message", function(e) { | |
| if(e.originalEvent.origin === 'https://e.infogram.com'){ | |
| var data = e.originalEvent.data; | |
| if(typeof data === 'string' && data.substr(0, 12) === 'iframeHeight'){ | |
| setTimeout(function(){ | |
| jQuery(window).trigger('SliderContentResize'); | |
| }, 200); | |
| } | |
| } | |
| }); |
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 (blocks, editor, i18n, element, components, _) { | |
| var el = element.createElement; | |
| blocks.registerBlockType('nextend/smartslider3', { | |
| title: 'Smart Slider 3', | |
| icon: 'welcome-learn-more', | |
| category: 'common', | |
| attributes: { | |
| slider: { | |
| type: 'string' |
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 | |
| defined('ABSPATH') || exit; | |
| class NextendSmartSlider3Gutenberg { | |
| public function __construct() { | |
| add_action('enqueue_block_editor_assets', array( | |
| $this, | |
| 'enqueue_block_editor_assets' |
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 | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_URL, "https://graph.facebook.com/v2.12/oauth/access_token"); | |
| curl_setopt($ch, CURLOPT_POST, 1); | |
| curl_setopt($ch, CURLOPT_POSTFIELDS, "postvar1=value1&postvar2=value2&postvar3=value3"); | |
| curl_setopt($ch, CURLOPT_VERBOSE, true); |
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 | |
| /* | |
| Plugin Name: Fix: Insert PHP Code Snippet output buffer issue | |
| Author: nextendweb | |
| Version: 1.0.0 | |
| Requires at least: 4.1 | |
| Tested up to: 4.9 | |
| License: GPLv2 or later | |
| License URI: http://www.gnu.org/licenses/gpl-2.0.html | |
| */ |
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 | |
| add_action('plugins_loaded', 'fix_insert_php_code_snippet'); | |
| function fix_insert_php_code_snippet() { | |
| add_shortcode('xyz-ips', 'mod_xyz_ips_display_content'); | |
| } | |
| function mod_xyz_ips_display_content($xyz_snippet_name) { | |
| global $wpdb; | |
| if (is_array($xyz_snippet_name)) { |
NewerOlder