Small fixes after tests

Monotone-Parent: b1fac1b458b718d0b80ecc77aa59220107cd9ef8
Monotone-Revision: 01bf1d89cd94ea18b92612c7cdf2f88d80cd7d93

Monotone-Author: crobert@inverse.ca
Monotone-Date: 2009-07-16T17:21:25
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
C Robert
2009-07-16 17:21:25 +00:00
parent d3e2bdf23a
commit aee8aa1f5e
3 changed files with 11 additions and 6 deletions

View File

@@ -67,8 +67,8 @@ function resetTableActions () {
row.observe("selectstart", listRowMouseDownHandler);
var tds = row.childElements ();
tds[0].observe("mousedown", endAllEditables);
tds[1].observe("mousedown", endAllEditables);
tds[0].observe ("dblclick", onNameEdit);
tds[1].observe("mousedown", endAllEditables);
tds[1].childElements ()[0].observe ("dblclick", onColorEdit);
}
}
@@ -129,7 +129,7 @@ function onColorEdit (e) {
);
cPicker.focus();
preventDefault(event);
preventDefault(e);
}
function onColorPickerChoice (newColor) {