[pypy-commit] pypy.org extradoc: make it not cache

fijal noreply at buildbot.pypy.org
Fri Jan 27 11:01:10 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: extradoc
Changeset: r307:f663f346f8dc
Date: 2012-01-27 12:00 +0200
http://bitbucket.org/pypy/pypy.org/changeset/f663f346f8dc/

Log:	make it not cache

diff --git a/js/script2.js b/js/script2.js
--- a/js/script2.js
+++ b/js/script2.js
@@ -1,18 +1,18 @@
 
 function py3k_donate() {
-    $.get("don1.html", function (html) {
+    $.get("don1.html#", function (html) {
         $("#sidebar").html(html);
     });
 }
 
 function general_donate() {
-    $.get("don2.html", function (html) {
+    $.get("don2.html#", function (html) {
         $("#sidebar").html(html);
     });
 }
 
 function numpy_donate() {
-    $.get("don3.html", function (html) {
+    $.get("don3.html#", function (html) {
         $("#sidebar").html(html);
     });
 }


More information about the pypy-commit mailing list