Last active
June 29, 2022 02:45
-
-
Save tbrown/dd3bb3daa935eadfbee1548f85ef67fd to your computer and use it in GitHub Desktop.
Language framework
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
Language framework | |
set Latin -> Latin defaults | |
set Japanese -> Japanese defaults | |
Latin defaults | |
Blank canvas | |
type English text -> Latin defaults | |
type Japanese text -> Japanese defaults | |
English template | |
Japanese template | |
Japanese defaults | |
type English text -> Japanese defaults | |
type Japanese text -> Japanese defaults | |
Presents in from porch | |
Bread | |
AH |
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
function render(model){ | |
return $('button', {style: {position: "relative", left: 50, top: 30}, | |
onClick: function(){ model.emit("set Latin") }}, | |
"Tick"); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment