Skip to content

Commit

Permalink
How many times do I have to fix the casing on the Device JS object?
Browse files Browse the repository at this point in the history
  • Loading branch information
Fil Maj committed Dec 1, 2009
1 parent e511987 commit 73b0b76
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ public class DeviceCommand implements Command {

private static final String CODE = "PhoneGap=initialize";
private static final String EMULATOR = "Emulator";
private static final String DEVICE_NAME = ";Device.name = '";
private static final String DEVICE_FLASH = "';Device.flash = ";
private static final String DEVICE_PLATFORM = ";Device.platform = '";
private static final String DEVICE_VENDOR = "';Device.vendor = '";
private static final String DEVICE_BATTERY = "';Device.battery = ";
private static final String DEVICE_VERSION = ";Device.version = '";
private static final String DEVICE_SIMULATOR = "';Device.isSimulator = ";
private static final String DEVICE_CAMERA = ";Device.hasCamera = ";
private static final String DEVICE_UUID = ";Device.uuid = ";
private static final String DEVICE_NAME = ";device.name = '";
private static final String DEVICE_FLASH = "';device.flash = ";
private static final String DEVICE_PLATFORM = ";device.platform = '";
private static final String DEVICE_VENDOR = "';device.vendor = '";
private static final String DEVICE_BATTERY = "';device.battery = ";
private static final String DEVICE_VERSION = ";device.version = '";
private static final String DEVICE_SIMULATOR = "';device.isSimulator = ";
private static final String DEVICE_CAMERA = ";device.hasCamera = ";
private static final String DEVICE_UUID = ";device.uuid = ";
private static final String SEMI_COLON = ";";

/**
Expand Down

0 comments on commit 73b0b76

Please sign in to comment.