File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ Bug Fixes
6060* The Static, Kinematic and Dynamic consts that P2.Body uses were incorrect (fixes #563 )
6161* Sprite.destroy would fail if it had an Arcade Physics body, now added.
6262* Group.getAt comparison updated (fixes #578 )
63-
63+ * Fixed the IE11 version check (fixes # 579 )
6464
6565
6666Version 2.0.0 - "Aes Sedai" - March 13th 2014
Original file line number Diff line number Diff line change @@ -579,12 +579,12 @@ Phaser.Device.prototype = {
579579 {
580580 this . silk = true ;
581581 }
582- else if ( / T r i d e n t \/ ( \d + \. \d + ) ; r v : ( \d + \. \d + ) / . test ( ua ) )
582+ else if ( / T r i d e n t \/ ( \d + \. \d + ) ( . * ) r v : ( \d + \. \d + ) / . test ( ua ) )
583583 {
584584 this . ie = true ;
585585 this . trident = true ;
586586 this . tridentVersion = parseInt ( RegExp . $1 , 10 ) ;
587- this . ieVersion = parseInt ( RegExp . $2 , 10 ) ;
587+ this . ieVersion = parseInt ( RegExp . $3 , 10 ) ;
588588 }
589589
590590 // WebApp mode in iOS
You can’t perform that action at this time.
0 commit comments