summaryrefslogtreecommitdiff
path: root/editor/actions/editor_actions.ml
diff options
context:
space:
mode:
Diffstat (limited to 'editor/actions/editor_actions.ml')
-rwxr-xr-xeditor/actions/editor_actions.ml11
1 files changed, 9 insertions, 2 deletions
diff --git a/editor/actions/editor_actions.ml b/editor/actions/editor_actions.ml
index 8c47363..70b078b 100755
--- a/editor/actions/editor_actions.ml
+++ b/editor/actions/editor_actions.ml
@@ -72,11 +72,17 @@ let populate_menu
add_button)
and export_event =
+ Evr.on_el
+ Ev.click
+ (fun _ -> Export.create ())
+ export_button
+
+ and import_event =
Note.E.join (
Evr.on_el
Ev.click
- (fun _ -> Export.create ())
- export_button)
+ (fun _ -> Import.create ())
+ load_button)
in
@@ -147,4 +153,5 @@ let populate_menu
; redirect_event
; add_event
; export_event
+ ; import_event
])