diff --git a/editor/ui/dialogs/content/EdImageMap.xul b/editor/ui/dialogs/content/EdImageMap.xul index 92a792a0a1f5..9c85bec3be36 100644 --- a/editor/ui/dialogs/content/EdImageMap.xul +++ b/editor/ui/dialogs/content/EdImageMap.xul @@ -19,14 +19,14 @@ - Rights Reserved. - - Contributor(s): - - Brian King - - Dan Haddix (dan6992@hotmail.com) + - Brian King + - Dan Haddix --> - + + @@ -57,7 +57,9 @@ - + + + @@ -69,17 +71,19 @@ - - - + + + - - - + + + - + + + @@ -97,6 +101,7 @@ + @@ -132,11 +137,11 @@ - - - - - + + + + + @@ -145,10 +150,10 @@ - - - - + + + + @@ -163,12 +168,12 @@ - + diff --git a/editor/ui/dialogs/content/EdImageMapHotSpot.js b/editor/ui/dialogs/content/EdImageMapHotSpot.js index d15337826a2e..744116636fbd 100644 --- a/editor/ui/dialogs/content/EdImageMapHotSpot.js +++ b/editor/ui/dialogs/content/EdImageMapHotSpot.js @@ -14,7 +14,7 @@ * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1999-2000 Netscape Communications Corporation. All + * Copyright (C) 1998-2000 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): @@ -34,30 +34,54 @@ function Startup() // Create dialog object to store controls for easy access dialog = new Object; dialog.urlInput = document.getElementById("urlInput"); + dialog.targetInput = document.getElementById("targetInput"); + dialog.altInput = document.getElementById("altInput"); + dialog.commonInput = document.getElementById("commonInput"); - dialog.url = window.arguments[0].getAttribute("href"); + dialog.hsHref = window.arguments[0].getAttribute("hsHref"); + if (dialog.hsHref != '') + dialog.urlInput.value = dialog.hsHref; - if (dialog.url != '') - dialog.urlInput.value = dialog.url; + dialog.hsAlt = window.arguments[0].getAttribute("hsAlt"); + if (dialog.hsAlt != '') + dialog.altInput.value = dialog.hsAlt; - // Kinda clunky: Message was wrapped in a

, - // so actual message is a child text node - //dialog.srcMessage = (document.getElementById("srcMessage")).firstChild; - - //if (null == dialog.srcInput || - // null == dialog.srcMessage ) - //{ - // dump("Not all dialog controls were found!!!\n"); - //} - - // Set initial focus + dialog.hsTarget = window.arguments[0].getAttribute("hsTarget"); + if (dialog.hsTarget != ''){ + dialog.targetInput.value = dialog.hsTarget; + len = dialog.commonInput.length; + for (i=0; i @@ -31,100 +31,62 @@ - - - +