Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: chrome/content/actor.jsm

Issue 29332893: Issue 3431 - Element Hiding Helper shutdown fails (shutdown is not a function) (Closed)
Patch Set: Fixed style Created Dec. 21, 2015, 7:01 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/content/frameScript.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | chrome/content/frameScript.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld