From: <sk...@us...> - 2008-09-29 11:15:27
|
Revision: 1296 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=1296&view=rev Author: sknappe Date: 2008-09-29 11:15:23 +0000 (Mon, 29 Sep 2008) Log Message: ----------- bugfix Modified Paths: -------------- trunk/src/dbpedia-navigator/js/ajax.js Modified: trunk/src/dbpedia-navigator/js/ajax.js =================================================================== --- trunk/src/dbpedia-navigator/js/ajax.js 2008-09-29 10:55:47 UTC (rev 1295) +++ trunk/src/dbpedia-navigator/js/ajax.js 2008-09-29 11:15:23 UTC (rev 1296) @@ -161,7 +161,7 @@ function clearPositives() { - if (document.all){ + if (document.all){ //IE var XhrObj = new ActiveXObject("Microsoft.XMLHTTP"); } @@ -180,7 +180,7 @@ } XhrObj.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); - XhrObj.send(); + XhrObj.send(''); } function clearNegatives() @@ -205,7 +205,7 @@ } XhrObj.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); - XhrObj.send(); + XhrObj.send(''); } function removePosInterest(param) @@ -290,7 +290,7 @@ } XhrObj.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); - XhrObj.send(); + XhrObj.send(''); } function stopServerCall() @@ -314,7 +314,7 @@ } XhrObj.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); - XhrObj.send(); + XhrObj.send(''); } function getSubjectsFromConcept(param) @@ -427,5 +427,5 @@ } XhrObj.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); - XhrObj.send(); + XhrObj.send(''); } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |