Merge pull request #2249 from dandoveralba/non-retina

Support Launching Non-Retina iPhone
This commit is contained in:
Jonathan Lipps
2014-04-02 16:06:18 -07:00

View File

@@ -788,7 +788,7 @@ IOS.prototype.getDeviceString = function () {
if (isiPhone) {
if (isRetina && isTall) {
iosDeviceString += is64bit ? " (4-inch 64-bit)" : " (4-inch)";
} else {
} else if (this.args.deviceName.toLowerCase().indexOf("3.5") !== -1) {
iosDeviceString += " (3.5-inch)";
}
} else {