blob: edcf3975603260a27d6fb8de508cf868f80dd606 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
function addTask(){
}
function changeStatus(){
}
function updateFeed(){
}
function getFeedArguments(){
var arguments = [];
arguments.push(document.getElementById("done").value);
arguments.push(document.getElementById("undone").value);
arguments.push(document.getElementById("indev").value);
arguments.push(document.getElementById("prio1").value);
console.debug(arguments);
//updateFeed(arguments);
}
|