Guest User

Untitled

a guest
Jun 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Handle JSONP-style loading
  2. window[ jsonp ] = function(tmp){
  3. data = tmp;
  4. success();
  5. complete();
  6. // Garbage collect
  7. window[ jsonp ] = undefined;
  8. try{ delete window[ jsonp ]; } catch(e){}
  9. if ( head )
  10. head.removeChild( script );
  11. };
Add Comment
Please, Sign In to add comment