Changeset 1884
- Timestamp:
- 08/20/08 18:49:06 (3 months ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/admin/static/js/common.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r1882 r1884 1 1 2008-08-20 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * admin/static/js/common.js: Fixes a weird problem with Firedfox. 4 If window.location.reload() is called it pops a dialog asking 5 whether it should resend the last post. Using the twisted: 6 window.location = window.location assignament it does the same 7 thing without showing the window question. 2 8 3 9 * cherokee/Makefile.am (libcherokeeinclude_HEADERS): Installs a cherokee/trunk/admin/static/js/common.js
r1797 r1884 90 90 jQuery.post (url, post, 91 91 function (data, textStatus) { 92 window.location.reload();92 window.location = window.location; 93 93 } 94 94 ); … … 125 125 jQuery.post (url, post, 126 126 function (data, textStatus) { 127 window.location.reload();127 window.location = window.location; 128 128 } 129 129 );