From 3615ced42e9ee2e6e5578c6b885781df54703184 Mon Sep 17 00:00:00 2001 From: Martyn Haigh Date: Tue, 9 Apr 2013 18:56:47 +0100 Subject: [PATCH] Bug 793747 - Add app origin to install message. r=mfinkle --- mobile/android/chrome/content/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/android/chrome/content/browser.js b/mobile/android/chrome/content/browser.js index 85232b69f18..605b0d1be34 100644 --- a/mobile/android/chrome/content/browser.js +++ b/mobile/android/chrome/content/browser.js @@ -6039,7 +6039,7 @@ var WebappsUI = { let name = manifest.name ? manifest.name : manifest.fullLaunchPath(); let showPrompt = true; - if (!showPrompt || Services.prompt.confirm(null, Strings.browser.GetStringFromName("webapps.installTitle"), name)) { + if (!showPrompt || Services.prompt.confirm(null, Strings.browser.GetStringFromName("webapps.installTitle"), name + "\n" + aData.app.origin)) { // Get a profile for the app to be installed in. We'll download everything before creating the icons. let profilePath = sendMessageToJava({ type: "WebApps:PreInstall",