Bug 1209470 - Remove use of expression closure from Add-on SDK. r=mossop

This commit is contained in:
Tooru Fujisawa
2015-09-29 20:34:48 +09:00
parent c60f0640a4
commit ef7f96f74b
93 changed files with 658 additions and 409 deletions

View File

@@ -429,7 +429,9 @@ var getContentFrame = panel =>
panel.backgroundFrame
exports.getContentFrame = getContentFrame;
function getContentDocument(panel) getContentFrame(panel).contentDocument
function getContentDocument(panel) {
return getContentFrame(panel).contentDocument;
}
exports.getContentDocument = getContentDocument;
function setURL(panel, url) {