Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv32597/functions
Modified Files:
todo.js event.js
Log Message:
-Changes to functions/todo.js and functions/event.js fix bug 654486.
-Other miscellaneous changes to event and todo popups.
-Changed a variable name to avoid confusion with other similarly-named var
Index: todo.js
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/todo.js,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** todo.js 8 Dec 2002 09:45:59 -0000 1.6
--- todo.js 8 Feb 2003 04:47:57 -0000 1.7
***************
*** 4,13 ****
function openTodoInfo(vtodo_array)
{
! var windowW = 450;
var windowH = 275;
var url = "includes/todo.php?vtodo_array="+vtodo_array;
! options = "scrollbars=no"+",width="+windowW+",height="+windowH;
info = window.open(url, "Popup", options);
--- 4,13 ----
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);
Index: event.js
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/event.js,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** event.js 21 Jan 2003 03:18:07 -0000 1.7
--- event.js 8 Feb 2003 04:47:57 -0000 1.8
***************
*** 7,20 ****
function openEventInfo(event, calendarname, start, end, description)
{
! var windowW = 450;
var windowH = 275;
var url = "includes/event.php?event="+event+
! "&calendar_name="+calendarname+
"&start="+start+
"&end="+end+
"&description="+description;
! options = "width="+windowW+",height="+windowH; //"scrollbars=no"+",
info = window.open(url, "Popup", options);
--- 7,20 ----
function openEventInfo(event, calendarname, start, end, description)
{
! var windowW = 460;
var windowH = 275;
var url = "includes/event.php?event="+event+
! "&cal="+calendarname+
"&start="+start+
"&end="+end+
"&description="+description;
! options = "scrollbars=yes,width="+windowW+",height="+windowH;
info = window.open(url, "Popup", options);
|