This website requires JavaScript.
Explore
Help
Sign In
Mirrors
/
phaser
Watch
2
Star
0
Fork
You've already forked phaser
0
mirror of
https://github.com/photonstorm/phaser
synced
2024-11-23 21:24:09 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
a56cd31638
phaser
/
src
/
system
History
Richard Davey
1f73bbbe94
Device.canPlayVideo now checks for
ogv
as a valid file extension for OGG video files (thanks @JB-Tellez
#1928
)
2015-07-26 13:19:05 +01:00
..
Canvas.js
All undefined argument checks were changed from
if (typeof x === 'undefined')
to
if (x === undefined)
removing the typeof check and saving some bytes across the codebase in the process.
2015-07-22 10:37:15 +01:00
Device.js
Device.canPlayVideo now checks for
ogv
as a valid file extension for OGG video files (thanks @JB-Tellez
#1928
)
2015-07-26 13:19:05 +01:00
DOM.js
All undefined argument checks were changed from
if (typeof x === 'undefined')
to
if (x === undefined)
removing the typeof check and saving some bytes across the codebase in the process.
2015-07-22 10:37:15 +01:00
RequestAnimationFrame.js
All undefined argument checks were changed from
if (typeof x === 'undefined')
to
if (x === undefined)
removing the typeof check and saving some bytes across the codebase in the process.
2015-07-22 10:37:15 +01:00