Skip to content

Instantly share code, notes, and snippets.

@maxfarseer
Created November 17, 2019 18:23
Show Gist options
  • Save maxfarseer/86332ea8eadb501b54222d23912e2d88 to your computer and use it in GitHub Desktop.
Save maxfarseer/86332ea8eadb501b54222d23912e2d88 to your computer and use it in GitHub Desktop.
Add custom web element & logic (Elm, Canvas, Fabric.js)
-- Main.elm -> добавляем "port"
port module Main exposing (main)
-- ...
-- добавляем команду
port sendDataToJs : String -> Cmd msg
-- update функция
case msg of
-- ...
MsgToJs ->
( model, sendDataToJs "base64 string here...." )
-- ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment