Created
May 3, 2019 06:16
-
-
Save Sawtaytoes/ffe7d2aa8ea4ecf69aa83757688b2369 to your computer and use it in GitHub Desktop.
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 create() { | |
div = element("div"); | |
t = text(ctx.value); | |
set_style(div, "color", ctx.color); | |
set_style(div, "left", "" + ctx.x + "ch"); | |
set_style(div, "position", "absolute"); | |
set_style(div, "top", "" + ctx.y + "em"); | |
add_location(div, file, 47, 0, 754); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment