aboutsummaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2004-08-12 20:32:47 +0000
committerChad Little <clittle@users.sourceforge.net>2004-08-12 20:32:47 +0000
commit3529ead9b42f9c7a195cae84f367a130e4e0e7d6 (patch)
treecf8b6296db7a505cf98a48721bf3cc18d5e143e9 /functions
parentcd06026f2d433d1ff9e34924f1d9ea63331f88f2 (diff)
downloadphpicalendar-3529ead9b42f9c7a195cae84f367a130e4e0e7d6.tar.gz
phpicalendar-3529ead9b42f9c7a195cae84f367a130e4e0e7d6.tar.bz2
phpicalendar-3529ead9b42f9c7a195cae84f367a130e4e0e7d6.zip
Refixed todo popup.
Diffstat (limited to 'functions')
-rw-r--r--functions/event.js9
-rw-r--r--functions/todo.js14
2 files changed, 9 insertions, 14 deletions
diff --git a/functions/event.js b/functions/event.js
index adee336..c3d43c1 100644
--- a/functions/event.js
+++ b/functions/event.js
@@ -34,6 +34,15 @@ function EventData(event, cal, start, end, description, status, location, organi
this.url = url;
}
+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();
//-->
</script> \ No newline at end of file
diff --git a/functions/todo.js b/functions/todo.js
deleted file mode 100644
index 52cc96a..0000000
--- a/functions/todo.js
+++ /dev/null
@@ -1,14 +0,0 @@
-<script language="JavaScript" type="text/javascript">
-<!--
- 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();
- }
-
-//-->
-</script>

© 2014-2024 Faster IT GmbH | imprint | privacy policy