Guest User

Untitled

a guest
Jan 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. var default_video_html = '<html><head><script type="text/javascript">document.addEventListener("touchmove", touchHandler, false);function touchHandler(e) { if(e.touches.length == 1) { e.preventDefault(); } }</script><style type="text/css">div#test { background: #ca0000; height: 495px; width: 680px; }</style></head><body><div id="test" onclick="alert(\'Clicked!\');">Hey</div></body></html>';
  2.  
  3. var web_videobox = Ti.UI.createWebView({
  4. height: 200,
  5. width: 200,
  6. backgroundColor: "transparent",
  7. html: default_video_html
  8. });
  9.  
  10. web_videobox.addEventListener("touchmove", function(e) { });
Add Comment
Please, Sign In to add comment