Skip to content

Instantly share code, notes, and snippets.

View tcjr's full-sized avatar

Tom Carter tcjr

View GitHub Profile
@tcjr
tcjr / machine.js
Created December 25, 2020 22:35
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@tcjr
tcjr / controllers.application\.js
Last active August 3, 2021 21:45
require-button-type fix
import Controller from '@ember/controller';
import { action } from '@ember/object';
export default class ApplicationController extends Controller {
@action doSomething() {
alert('form submitted');
}
}