Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var Application = (function(){
  2.     var self = this;
  3.  
  4.     this.hello = function(){
  5.         console.log("hello");
  6.     };
  7.  
  8.     //Den här får du kolla på
  9.     this.close = function(e) {
  10.        
  11.         console.log("close");
  12.         console.log(self);
  13.         console.log(self.parentNode);
  14.         //self.parentNode.removeChild(self);
  15.         //this.parentNode.parentNode.parentNode.removeChild(this.parentNode.parentNode);
  16.     }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement