Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31546/functions
Modified Files:
event.js
Removed Files:
todo.js
Log Message:
Refixed todo popup.
Index: event.js
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/event.js,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** event.js 20 Nov 2003 05:18:38 -0000 1.12
--- event.js 12 Aug 2004 20:32:50 -0000 1.13
***************
*** 35,38 ****
--- 35,47 ----
}
+ function openTodoInfo(vtodo_array) {
+ var windowW = 460;
+ var windowH = 275;
+ var url = "includes/todo.php?vtodo_array="+vtodo_array;
+ options = "scrollbars=yes,width="+windowW+",height="+windowH;
+ info = window.open(url, "Popup", options);
+ info.focus();
+ }
+
document.popup_data = new Array();
//-->
--- todo.js DELETED ---
|