Skip to content

Instantly share code, notes, and snippets.

View 49e94b8f256530dc0d41f740dfe8a4c1's full-sized avatar
🎯
Focusing

azerty 49e94b8f256530dc0d41f740dfe8a4c1

🎯
Focusing
View GitHub Profile
const filterBubbleMachineDefinition = Machine(
{
id: 'filterBubbleMachine',
initial: 'dropdownHidden',
states: {
dropdownHidden: {
on: {
SEARCH_BAR_FOCUSED: {
target: 'criteriaShown',
actions: ['showCriteria'],
@49e94b8f256530dc0d41f740dfe8a4c1
49e94b8f256530dc0d41f740dfe8a4c1 / demo.html
Last active November 18, 2019 15:43
Example: (focusout) events from the input element wont be fired if the jsplumb component is clicked. Clicking any other HTML elements fires the event as expected.
<div class="content-wrapper">
<h3>Hello world</h3>
<div class="row">
<div class="col-5 border border-primary p-5" style="height: 100%">
<h4>JsPlumbGraph div</h4>
<jsplumb-flowcharta toolkitId="flowchart" [data]="data"
>Loading Workflow Builder...</jsplumb-flowcharta
>
</div>
<div class="col-1">
@49e94b8f256530dc0d41f740dfe8a4c1
49e94b8f256530dc0d41f740dfe8a4c1 / install-wp.sh
Created November 9, 2018 09:00 — forked from BFTrick/install-wp.sh
Download & Install WordPress via Curl
curl -LO http://wordpress.org/latest.zip
unzip latest.zip
mv wordpress site
rm latest.zip