Objective
Fix the annoying Explorer sidebar of webtask.io and make it scrollable. 😊
How?
I use Google Chrome browser so I installed User CSS extension which basically allows one to add custom CSS to add a website.
Here's the custom css to add:
<?php | |
class AbanteCartValetDriver extends ValetDriver | |
{ | |
/** | |
* Determine if the driver serves the request. | |
* | |
* @param string $sitePath | |
* @param string $siteName | |
* @param string $uri |
here |
import React from "react"; | |
import axios from "axios"; | |
class App extends React.Component { | |
constructor() { | |
super(); | |
this.state = { | |
todos: [], | |
isFetching: true | |
}; |
Fix the annoying Explorer sidebar of webtask.io and make it scrollable. 😊
I use Google Chrome browser so I installed User CSS extension which basically allows one to add custom CSS to add a website.
Here's the custom css to add:
The main difference between the two pages is the method of sending messages. Recieving messages is the same in both.
Send messages to iframe using iframeEl.contentWindow.postMessage
Recieve messages using window.addEventListener('message')
const trafficLightMachine = Machine({ | |
id: "trafficLight", | |
initial: "red", | |
on: { | |
NEXT: "green" | |
} | |
}) |
Machine({ | |
id: "electricFan", | |
type: "parallel", | |
states: { | |
power: { | |
id: "power", | |
initial: "turnedOff", | |
states: { | |
turnedOff: { | |
on: { |
This guide is intended to get you up and running with XDebug for Visual Studio Code on OS X.
const allProducts = ["Auction! Desktop", "Auction! Cloud", "Auction! Online", "Auction! Mobile", "Auction! Reservations"]; | |
const orderMachine = Machine({ | |
id: 'order', | |
initial: 'idle', | |
context: { | |
cart: [], | |
loggedInuser: { | |
organizations: null, | |
profile: null |
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |