4
0
mirror of https://github.com/apache/cordova-android.git synced 2025-05-31 20:25:44 +08:00

forgot the not Gap supported device if statement in my gap.js modifications

This commit is contained in:
Fred Grott 2009-01-14 06:59:18 -06:00 committed by fredgrott
parent ee2d4f7200
commit ba73ad2a29

@ -157,7 +157,18 @@ var Device = {
Device.gapVersion = window.IPoddGap.getVersion();
}
if (!window.DroidGap || !window.IPhoneGap || !window.IPodGap )
{
Device.available = "__gap";
Device.model = "__gap_device_model";
Device.version = "__gap_device_version";
Device.osversion = "_gap_device_os";
Device.sdkfwversion = "_gap_device_sdkversion";
Device.gapVersion = "__gap_version";
Device.uuid = "__gap_device_uniqueid";
alert("GAP is not supported!");
}
},