Guest User

Untitled

a guest
Jul 15th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <script type="text/javascript">
  2. function global() { alert("global");}
  3.  
  4. GroupGifts = {};
  5.  
  6. GroupGifts.Invitations = {};
  7. GroupGifts.test = function() {
  8. global();
  9. };
  10.  
  11. (function(){
  12. this.testing = function() {
  13. alert("aaa");
  14. };
  15. }).call(GroupGifts);
  16.  
  17.  
  18. GroupGifts.Invitations.EmailOverlay = function() {
  19.  
  20. }.call(GroupGifts.Invitations.EmailOverlay);
  21.  
  22. GroupGifts.test();
  23. GroupGifts.testing();
  24.  
  25. </script>
Add Comment
Please, Sign In to add comment