From e3ce63d1406a343d7295995d3f2fbfad9e12b608 Mon Sep 17 00:00:00 2001 From: Jim Hu Date: Wed, 5 Apr 2006 04:43:59 +0000 Subject: changes to event popup so that reparsing not needed --- functions/event.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'functions/event.js') diff --git a/functions/event.js b/functions/event.js index 0072bd3..6895626 100644 --- a/functions/event.js +++ b/functions/event.js @@ -8,6 +8,7 @@ function openEventWindow(num) { form.elements.time.value = data.time; form.elements.uid.value = data.uid; form.elements.cpath.value = data.cpath; + form.elements.event_data.value = data.event_data; // open a new window var w = window.open('', 'Popup', 'scrollbars=yes,width=460,height=275'); @@ -15,11 +16,12 @@ function openEventWindow(num) { form.submit(); } -function EventData(date, time, uid, cpath) { +function EventData(date, time, uid, cpath, event_data) { this.date = date; this.time = time; this.uid = uid; this.cpath = cpath; + this.event_data = event_data; } function openTodoInfo(vtodo_array) { -- cgit v1.2.3