Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 486 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 486 Bytes

Steroids Echo plugin

Sample Echo plugin for Steroids.js. Compatible with Cordova and plugman. Built upon the Cordova Echo plugin example.

##Usage

Echoes back a text string sent to the native layer.

window.echo("echome", function(echoValue) {
    alert(echoValue == "echome"); // should alert true.
});