Skip to content

Instantly share code, notes, and snippets.

@jrbistuer
Created April 7, 2013 22:38
Show Gist options
  • Save jrbistuer/5332869 to your computer and use it in GitHub Desktop.
Save jrbistuer/5332869 to your computer and use it in GitHub Desktop.
window.echo = function(str, callback) {
cordova.exec(
callback,
function(err) { callback('Nothing to echo.'); },
"Echo",
"echo",
[str]
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment