diff options
author | Joris | 2020-08-08 12:49:03 +0200 |
---|---|---|
committer | Joris | 2020-08-08 12:49:03 +0200 |
commit | 081e6aae57719c15bdbc5e973ca7ddba9506a4bb (patch) | |
tree | a8de15bb4165639cf283bde7b7e63eb330e83d88 /src/Main.ml | |
parent | 4ee0dfae75fda3a8b6347d55c728b50ce5c210d9 (diff) |
Show context menu to add, modify and delete markers
Diffstat (limited to 'src/Main.ml')
-rw-r--r-- | src/Main.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Main.ml b/src/Main.ml index b95d01f..9216b35 100644 --- a/src/Main.ml +++ b/src/Main.ml @@ -1,3 +1,3 @@ let () = - let body = Document.querySelectorUnsafe "body" in - Element.appendChild body (Map.render ()) + let body = Document.query_selector_unsafe "body" in + Element.append_child body (Map.render ()) |