| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 #plugin { | 4 #plugin { |
| 5 width: 150px; | 5 width: 150px; |
| 6 height: 150px; | 6 height: 150px; |
| 7 } | 7 } |
| 8 </style> | 8 </style> |
| 9 </head> | 9 </head> |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 eventSender.touchStart(); | 30 eventSender.touchStart(); |
| 31 eventSender.updateTouchPoint(0, positionX + 10, positionY + 5); | 31 eventSender.updateTouchPoint(0, positionX + 10, positionY + 5); |
| 32 eventSender.touchMove(); | 32 eventSender.touchMove(); |
| 33 eventSender.releaseTouchPoint(0); | 33 eventSender.releaseTouchPoint(0); |
| 34 eventSender.touchEnd(); | 34 eventSender.touchEnd(); |
| 35 } | 35 } |
| 36 | 36 |
| 37 </script> | 37 </script> |
| 38 </body> | 38 </body> |
| 39 </html> | 39 </html> |
| OLD | NEW |