 Issue 29332893:
  Issue 3431 - Element Hiding Helper shutdown fails (shutdown is not a function)  (Closed)
    
  
    Issue 29332893:
  Issue 3431 - Element Hiding Helper shutdown fails (shutdown is not a function)  (Closed) 
  | Index: chrome/content/actor.jsm | 
| =================================================================== | 
| --- a/chrome/content/actor.jsm | 
| +++ b/chrome/content/actor.jsm | 
| @@ -22,17 +22,17 @@ let name = "elemhidehelper"; | 
| let actor = { | 
| constructorFun: Actor, | 
| constructorName: name, | 
| name: name | 
| }; | 
| DebuggerServer.addTabActor(actor, name); | 
| -let shutdown = (function() | 
| +var shutdown = (function() | 
| { | 
| let executed = false; | 
| return function() | 
| { | 
| if (!executed) | 
| { | 
| executed = true; | 
| try |