From 782b1d6a8943eba9980296f3b3edc4b9ebd2c84b Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 2 Dec 2005 16:02:00 +0000 Subject: [PATCH] * wclib.js: fixed a syntax error --- webcit/ChangeLog | 3 +++ webcit/static/wclib.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 5d3f132e1..231b1ce68 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,5 +1,8 @@ $Id$ +Fri Dec 2 11:01:30 EST 2005 ajc +* wclib.js: fixed a syntax error + Thu Dec 1 17:46:18 EST 2005 ajc * which_div_expanded is now persistent across sessions diff --git a/webcit/static/wclib.js b/webcit/static/wclib.js index 8371add04..e04cc1395 100644 --- a/webcit/static/wclib.js +++ b/webcit/static/wclib.js @@ -80,7 +80,7 @@ function expand_floor(floor_div) { // notify the server of what we did new Ajax.Request( 'set_floordiv_expanded/'+floor_div, { - method: 'post', + method: 'post' } ); } -- 2.39.2