changeset 9:35ee0b1d8719 draft

modfied getEvidence function
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Wed, 20 Mar 2013 06:23:29 +0900
parents 07191a24a9a4
children 3fa1be92ab48
files index.html
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/index.html	Wed Mar 20 06:09:42 2013 +0900
+++ b/index.html	Wed Mar 20 06:23:29 2013 +0900
@@ -273,9 +273,9 @@
 
 function getEvidence(id, kind, direction) {
     $.ajax({
-	url:"/aat/aaevidencesiftingmodel.userdesktops/get?id="+id+"?kind="kind+"?direction="+direction,
+	url:"/aat/aaevidencesiftingmodel.userdesktops/get?id="+id+"?kind="+kind+"?direction="+direction,
 	success:function(o) { parseJSONGraphData(GRAPH_DATA, o); },
-	type:"GET", cache:fasel;
+	type:"GET", cache:false,
 	error:function(o) { console.log("getEvidence error : ", o); }
     });
 }