Skip to content

Commit

Permalink
fix requesting pid
Browse files Browse the repository at this point in the history
add var declaration for requestingKey
typo: requestingKey[requestingKey] => requesting[requestingKey]
  • Loading branch information
jo committed Jun 2, 2010
1 parent a2bfa3c commit 2f755c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/jquery.offline.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
data = null;
}

requestingKey = url + "?" + data;
if (requestingKey[requestingKey]) {
var requestingKey = url + "?" + data;
if (requesting[requestingKey]) {
return false;
}

Expand Down

0 comments on commit 2f755c9

Please sign in to comment.