| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <body> | 2 <body> |
| 3 <div id="player_container"></div> | 3 <div id="player_container"></div> |
| 4 <script> | 4 <script> |
| 5 var player = null; | 5 var player = null; |
| 6 function InstallEventHandler(event, action) { | 6 function InstallEventHandler(event, action) { |
| 7 player.addEventListener(event, function(e) { | 7 player.addEventListener(event, function(e) { |
| 8 eval(action); | 8 eval(action); |
| 9 }, false); | 9 }, false); |
| 10 } | 10 } |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 player.play(); | 36 player.play(); |
| 37 } | 37 } |
| 38 } | 38 } |
| 39 } | 39 } |
| 40 if (!ok) { | 40 if (!ok) { |
| 41 document.title = 'FAILED'; | 41 document.title = 'FAILED'; |
| 42 } | 42 } |
| 43 </script> | 43 </script> |
| 44 </body> | 44 </body> |
| 45 </html> | 45 </html> |
| OLD | NEW |