Skip to content

Commit 389b6dd

Browse files
committed
Fixed for jshint.
1 parent f64fc42 commit 389b6dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/system/Device.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ Phaser.Device._initialize = function () {
664664
else if (/iP[ao]d|iPhone/i.test(ua))
665665
{
666666
device.iOS = true;
667-
var v = (navigator.appVersion).match(/OS (\d+)/);
667+
(navigator.appVersion).match(/OS (\d+)/);
668668
device.iOSVersion = parseInt(RegExp.$1, 10);
669669
}
670670
else if (/Linux/.test(ua))

0 commit comments

Comments
 (0)