Skip to content

Commit

Permalink
changed the code to correctly read locally
Browse files Browse the repository at this point in the history
  • Loading branch information
cegme committed Sep 4, 2012
1 parent c872fd9 commit 5c15771
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions web/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ function showPaper(tid) {

$.ajax({
type: 'GET',
url: '/grisham/paper/web/query.php',
url: '/grisham/web/query.php',
//url: 'http://neo.cise.ufl.edu/grisham/paper/web/query.php',
dataType: 'json',
data: {q: tid,
Expand Down Expand Up @@ -245,7 +245,7 @@ function kwQuery(offsetval, limitval) {
toggleLoading(true);
$.ajax({
type: "GET",
url: '/grisham/paper/web/query.php',
url: '/grisham/web/query.php',
//url: 'http://neo.cise.ufl.edu/grisham/paper/web/query.php',
dataType: "json",
data: {q: escape($("#kwrd").val()),
Expand Down
2 changes: 1 addition & 1 deletion web/papergraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function updatePaperGraph(paperid) {
toggleLoading(true);
$.ajax({
type: 'GET',
url: '/grisham/paper/web/query.php',
url: '/grisham/web/query.php',
//url: 'http://neo.cise.ufl.edu/grisham/paper/web/query.php',
dataType: 'json',
data: {q: paperid,
Expand Down

0 comments on commit 5c15771

Please sign in to comment.