OLD | NEW |
---|---|
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 </head> | 4 </head> |
5 <script> | 5 <script> |
6 screen.orientation.onchange = function() { | 6 window.onorientationchange = function() { |
7 document.location.hash = '#' + screen.orientation.angle; | 7 document.location.hash = '#' + window.orientation; |
8 }; | 8 }; |
9 | 9 |
10 document.location.hash = '#ready'; | 10 document.location.hash = '#ready'; |
11 </script> | 11 </script> |
12 <body> | 12 <body> |
13 <div>Starting...</div> | 13 <div>Starting...</div> |
14 </body> | 14 </body> |
15 </html> | 15 </html> |
OLD | NEW |