summaryrefslogtreecommitdiff
path: root/src/examples/spinner_example.js
Commit message (Collapse)AuthorAgeFilesLines
* js: fix examples functionsLarry2016-01-091-2/+2
| | | | | | | | | | Summary: update functions in examples @fix Reviewers: cedric, felipealmeida Differential Revision: https://phab.enlightenment.org/D3548 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* efl-js: JavaScript Eolian bindingFelipe Magno de Almeida2015-12-231-0/+90
To configure elementary sources with bindings to use in nodejs add ––with-js=nodejs in configure flags in EFL compilation to generate node files, then compile elementary normally: path/to/efl$ configure --with-js=nodejs path/to/efl$ make path/to/efl$ make install path/to/elm$ configure path/to/efl$ make path/to/efl$ make install To use, you have to require elm: elm = require('elm') The bindings is divided in two parts: generated and manually written. The generation uses the Eolian library for parsing Eo files and generate C++ code that is compiled against V8 interpreter library to create a elm.node file that can be required in a node.js instance. @feature