Files
beef/modules/phonegap/phonegap_beep/command.js
2012-02-18 10:06:47 +08:00

8 lines
168 B
JavaScript

//
// make the phone beep
//
beef.execute(function() {
navigator.notification.beep(1);
beef.net.send("<%= @command_url %>", <%= @command_id %>, 'Beeped');
});