summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--application/views/scripts/event/index.phtml10
1 files changed, 9 insertions, 1 deletions
diff --git a/application/views/scripts/event/index.phtml b/application/views/scripts/event/index.phtml
index a8f3a2c..5f44908 100644
--- a/application/views/scripts/event/index.phtml
+++ b/application/views/scripts/event/index.phtml
@@ -10,7 +10,7 @@ $(document).ready(function() {iniCalendar();});
</script>
</head>
<h1>Pool Control</h1>
-
+
<?php echo $this->formButton('addEvent', 'Add Event', array(
'onclick' => 'self.location="/event/add/"',
'class' => 'addbutton'))
@@ -30,6 +30,14 @@ $(document).ready(function() {iniCalendar();});
<div id='calendar' style='margin:3em 0;font-size:13px'></div>
<script type="text/javascript">
+
+ function showCalendar() {
+ $("#calendar").show();
+ }
+
+ function hideCalendar() {
+ $("#calendar").hide();
+ }
function selectPool() {
selectForm = document.PoolSelectForm;