Bug 793750 - Fix missing scope in launching marketplace. r=mfinkle

This commit is contained in:
Wes Johnston 2012-09-25 09:10:43 -07:00
parent 2663baeebf
commit 86a811afdc

View File

@ -6453,7 +6453,7 @@ var WebappsUI = {
request.onsuccess = function() {
let foundMarket = false;
for (let i = 0; i < request.result.length; i++) {
if (request.result[i].origin == this.MARKETPLACE.URI.prePath)
if (request.result[i].origin == WebappsUI.MARKETPLACE.URI.prePath)
foundMarket = true;
}