| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 eventSender.touchStart(); | 46 eventSender.touchStart(); |
| 47 eventSender.updateTouchPoint(0, positionX + 10, positionY + 5); | 47 eventSender.updateTouchPoint(0, positionX + 10, positionY + 5); |
| 48 eventSender.touchMove(); | 48 eventSender.touchMove(); |
| 49 eventSender.releaseTouchPoint(0); | 49 eventSender.releaseTouchPoint(0); |
| 50 eventSender.touchEnd(); | 50 eventSender.touchEnd(); |
| 51 } | 51 } |
| 52 | 52 |
| 53 </script> | 53 </script> |
| 54 </body> | 54 </body> |
| 55 </html> | 55 </html> |
| OLD | NEW |