You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2012/06/16 13:31:50 UTC

git commit: Use ajax helper function for _session GET request to stop request cache in IE7

Updated Branches:
  refs/heads/master b213e16ff -> 8979e5eed


Use ajax helper function for _session GET request to stop request cache in IE7


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/8979e5ee
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/8979e5ee
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/8979e5ee

Branch: refs/heads/master
Commit: 8979e5eedd0632ef99b59d83506b01752942e3e5
Parents: b213e16
Author: Ewan McDougall <mr...@mrloop.com>
Authored: Thu Jun 7 13:34:54 2012 +0200
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Sat Jun 16 13:26:56 2012 +0200

----------------------------------------------------------------------
 THANKS                           |    1 +
 share/www/script/jquery.couch.js |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/8979e5ee/THANKS
----------------------------------------------------------------------
diff --git a/THANKS b/THANKS
index 154f280..0834f98 100644
--- a/THANKS
+++ b/THANKS
@@ -96,6 +96,7 @@ suggesting improvements or submitting changes. Some of these people are:
  * Magnus Hoff <ma...@gmail.com>
  * Alexander Dorofeev <ak...@gmail.com>
  * Anthony S Baker <an...@gmail.com>
+ * Ewan McDougall <in...@mrloop.com>
 
 For a list of authors see the `AUTHORS` file.
 

http://git-wip-us.apache.org/repos/asf/couchdb/blob/8979e5ee/share/www/script/jquery.couch.js
----------------------------------------------------------------------
diff --git a/share/www/script/jquery.couch.js b/share/www/script/jquery.couch.js
index 62831a1..84aa625 100644
--- a/share/www/script/jquery.couch.js
+++ b/share/www/script/jquery.couch.js
@@ -139,7 +139,7 @@
      */
     session: function(options) {
       options = options || {};
-      $.ajax({
+      ajax({
         type: "GET", url: this.urlPrefix + "/_session",
         beforeSend: function(xhr) {
             xhr.setRequestHeader('Accept', 'application/json');