Fix for the component editor.

Monotone-Parent: b1e65bbb5b39abffb1d7c79bcce4dafb77512efc
Monotone-Revision: 2338a6c35427b6ff10e22c3431c2efc72aea29d2

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2010-02-12T20:59:46
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2010-02-12 20:59:46 +00:00
parent 110972a02d
commit d0d1e36499
3 changed files with 6 additions and 3 deletions

View File

@ -101,7 +101,7 @@
/><span class="content"
><a href="#" id="documentHref"><!-- space --></a
><a id="changeAttachButton" class="button" var:href="#"
><var:string label:value="Change..."/></a
><span><var:string label:value="Change..."/></span></a
></span></label>
<!-- hidden -->

View File

@ -9,7 +9,10 @@ SELECT#reminderList
{ display: none; }
A#changeAttachButton
{ margin-left: 1em; }
{ margin-left: 1em;
position: absolute;
right: 0;
display: inline; }
SPAN.datePicker INPUT.textField
{ width: 7em; }

View File

@ -34,7 +34,7 @@ function onPopupAttachWindow(event) {
if (event)
preventDefault(event);
var attachInput = document.getElementById("attach");
var attachInput = $("attach");
var newAttach = window.prompt(getLabel("Target:"), attachInput.value || "http://");
if (newAttach != null) {
var documentHref = $("documentHref");