|
From: <cl...@us...> - 2003-03-10 19:48:30
|
Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv8484/functions
Modified Files:
event.js
Log Message:
Support for displaying event STATUS in the java pop-up.
Index: event.js
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/event.js,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** event.js 8 Feb 2003 04:47:57 -0000 1.8
--- event.js 10 Mar 2003 19:48:26 -0000 1.9
***************
*** 5,9 ****
<script language="JavaScript" type="text/javascript">
<!--
! function openEventInfo(event, calendarname, start, end, description)
{
var windowW = 460;
--- 5,9 ----
<script language="JavaScript" type="text/javascript">
<!--
! function openEventInfo(event, calendarname, start, end, description, status)
{
var windowW = 460;
***************
*** 14,18 ****
"&start="+start+
"&end="+end+
! "&description="+description;
options = "scrollbars=yes,width="+windowW+",height="+windowH;
--- 14,19 ----
"&start="+start+
"&end="+end+
! "&description="+description+
! "&status="+status;
options = "scrollbars=yes,width="+windowW+",height="+windowH;
|