Merge pull request #1537 from curtissiemens/master

Fix 4-inch 64-bit device string building (was missing dash in 64 inch).
This commit is contained in:
bootstraponline
2013-11-25 13:21:52 -08:00

View File

@@ -555,7 +555,7 @@ IOS.prototype.getDeviceString = function() {
iosDeviceString += isRetina ? " Retina" : "";
if (isiPhone) {
if (isRetina && isTall) {
iosDeviceString += is64bit ? " (4-inch 64 bit)" : " (4-inch)";
iosDeviceString += is64bit ? " (4-inch 64-bit)" : " (4-inch)";
} else {
iosDeviceString += " (3.5-inch)";
}