aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-11-24 20:40:00 -0800
committerfriendica <info@friendica.com>2014-11-24 20:40:00 -0800
commit3bb0ef8a82ec660ff8ef37b9abc93da94234649a (patch)
treeecc02e3590420dcf30412044f0a73b9e88667a72 /view
parent89c5ffd7c84af178f496dee28671ad8870374c09 (diff)
downloadvolse-hubzilla-3bb0ef8a82ec660ff8ef37b9abc93da94234649a.tar.gz
volse-hubzilla-3bb0ef8a82ec660ff8ef37b9abc93da94234649a.tar.bz2
volse-hubzilla-3bb0ef8a82ec660ff8ef37b9abc93da94234649a.zip
Make events export track the current calendar. Turn it and 'new event' into buttons
Diffstat (limited to 'view')
-rwxr-xr-xview/tpl/event_head.tpl3
-rwxr-xr-xview/tpl/events-js.tpl13
2 files changed, 13 insertions, 3 deletions
diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl
index 6f1d2f22c..bcb1e07f6 100755
--- a/view/tpl/event_head.tpl
+++ b/view/tpl/event_head.tpl
@@ -24,10 +24,11 @@
eventClick: function(calEvent, jsEvent, view) {
showEvent(calEvent.id);
},
-
+
eventRender: function(event, element, view) {
//console.log(view.name);
if (event.item['author']['xchan_name']==null) return;
+
switch(view.name){
case "month":
element.find(".fc-event-title").html(
diff --git a/view/tpl/events-js.tpl b/view/tpl/events-js.tpl
index ad41e983a..9812291bf 100755
--- a/view/tpl/events-js.tpl
+++ b/view/tpl/events-js.tpl
@@ -2,8 +2,17 @@
<div class="generic-content-wrapper-styled">
<h2>{{$title}}</h2>
-<div id="export-event-link"><a href="{{$export.0}}" >{{$export.1}}</a></div>
-<div id="new-event-link"><a href="{{$new_event.0}}" >{{$new_event.1}}</a></div>
+
+<div id="export-event-link"><button class="btn btn-default btn-sm" onclick="exportDate(); return false;" >{{$export.1}}</button></div>
+<div id="new-event-link"><button class="btn btn-default btn-sm" onclick="window.location.href='{{$new_event.0}}'; return false;" >{{$new_event.1}}</button></div>
+
+<script>
+function exportDate() {
+ var moment = $('#events-calendar').fullCalendar('getDate');
+ var sT = 'events/' + moment.getFullYear() + '/' + (moment.getMonth() + 1) + '/export';
+ window.location.href=sT;
+}
+</script>
<div id="events-calendar"></div>
</div>