mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-05 23:26:24 +00:00
Monotone-Parent: e609c33218c6b86748aced829da0bcb994d513e4
Monotone-Revision: 34c654fc982f81e34f7e9da9fa20842cc3a6474a Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-04-24T20:38:14 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -417,8 +417,7 @@ function tasksListCallback(http) {
|
||||
list.appendChild(listItem);
|
||||
listItem.observe("mousedown", listRowMouseDownHandler);
|
||||
listItem.observe("click", onRowClick);
|
||||
listItem.observe("dblclick",
|
||||
editDoubleClickedEvent);
|
||||
listItem.observe("dblclick", editDoubleClickedEvent);
|
||||
listItem.setAttribute("id", data[i][0]);
|
||||
$(listItem).addClassName(data[i][5]);
|
||||
$(listItem).addClassName(data[i][6]);
|
||||
@@ -428,7 +427,7 @@ function tasksListCallback(http) {
|
||||
var input = document.createElement("input");
|
||||
input.setAttribute("type", "checkbox");
|
||||
listItem.appendChild(input);
|
||||
// input.observe("click", updateTaskStatus, true);
|
||||
input.observe("click", updateTaskStatus, true);
|
||||
input.setAttribute("value", "1");
|
||||
if (data[i][2] == 1)
|
||||
input.setAttribute("checked", "checked");
|
||||
|
||||
Reference in New Issue
Block a user