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() |
saroyanm
2015/12/21 13:45:18
What is the reason of using "var" here ?
Wladimir Palant
2015/12/21 19:01:59
As I said, the problem here is https://bugzilla.mo
saroyanm
2015/12/23 10:55:34
Got it.
|
{ |
let executed = false; |
return function() |
{ |
if (!executed) |
{ |
executed = true; |
try |