Bug 793747 - Add app origin to install message. r=mfinkle

This commit is contained in:
Martyn Haigh 2013-04-09 18:56:47 +01:00
parent e9c65dfa10
commit 3615ced42e

View File

@ -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",