Advertisement
Guest User

Untitled

a guest
Apr 19th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var win = windowUtils.open(url, {
  2.   name: 'test',
  3.   features: {
  4.     resizable: true,
  5.     width: Math.round(screen.availWidth * 0.6),
  6.     height: Math.round(screen.availHeight * 0.7),
  7.     left: Math.round(screen.availWidth * 0.2),
  8.     top: Math.round(screen.availHeight * 0.15)
  9.   }
  10. });
  11.  
  12. // this fails
  13. var worker =  workers.Worker({
  14.   window: content
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement