Files
beef/modules/phonegap/beep/command.js
2011-12-21 21:22:38 +13: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');
});