Merge pull request #1544 from curtissiemens/master

Fixing iosDeviceString for iPad 64-bit case (missing parentheses).
This commit is contained in:
Dan Cuellar
2013-11-26 13:51:02 -08:00

View File

@@ -572,7 +572,7 @@ IOS.prototype.getDeviceString = function() {
iosDeviceString += " (3.5-inch)";
}
} else {
iosDeviceString += is64bit ? " 64-bit" : "";
iosDeviceString += is64bit ? " (64-bit)" : "";
}
}
return iosDeviceString;