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
const filterBubbleMachineDefinition = Machine( | |
{ | |
id: 'filterBubbleMachine', | |
initial: 'dropdownHidden', | |
states: { | |
dropdownHidden: { | |
on: { | |
SEARCH_BAR_FOCUSED: { | |
target: 'criteriaShown', | |
actions: ['showCriteria'], |
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
<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"> |
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
curl -LO http://wordpress.org/latest.zip | |
unzip latest.zip | |
mv wordpress site | |
rm latest.zip |