felipealmeida pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=52d26818696b54287cc0a77ab92f367713d16060

commit 52d26818696b54287cc0a77ab92f367713d16060
Author: Lauro Moura <lauromo...@expertisesolutions.com.br>
Date:   Thu Feb 16 18:22:13 2017 -0300

    efl_js: Export efl.Loop
---
 src/bindings/js/efl_js/efl_js.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/bindings/js/efl_js/efl_js.cc b/src/bindings/js/efl_js/efl_js.cc
index f1be231..bd85703 100644
--- a/src/bindings/js/efl_js/efl_js.cc
+++ b/src/bindings/js/efl_js/efl_js.cc
@@ -70,6 +70,7 @@ EAPI void register_container(v8::Handle<v8::Object> global, 
v8::Isolate* isolate
 EAPI void register_control(v8::Handle<v8::Object> global, v8::Isolate* 
isolate);
 EAPI void register_file(v8::Handle<v8::Object> global, v8::Isolate* isolate);
 EAPI void register_image(v8::Handle<v8::Object> global, v8::Isolate* isolate);
+EAPI void register_loop(v8::Handle<v8::Object> global, v8::Isolate* isolate);
 EAPI void register_orientation(v8::Handle<v8::Object> global, v8::Isolate* 
isolate);
 EAPI void register_player(v8::Handle<v8::Object> global, v8::Isolate* isolate);
 EAPI void register_text(v8::Handle<v8::Object> global, v8::Isolate* isolate);
@@ -274,6 +275,7 @@ EAPI void init(v8::Handle<v8::Object> exports)
         efl::register_file(exports, v8::Isolate::GetCurrent());
         efl::register_image(exports, v8::Isolate::GetCurrent());
         efl::register_orientation(exports, v8::Isolate::GetCurrent());
+        efl::register_loop(exports, v8::Isolate::GetCurrent());
         efl::register_player(exports, v8::Isolate::GetCurrent());
         efl::register_text(exports, v8::Isolate::GetCurrent());
         // efl::register_text_properties(exports, v8::Isolate::GetCurrent());

-- 


Reply via email to