From 8959e0af3def5bae8ca7d5cf8edc225f29a1162a Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Wed, 18 Apr 2012 11:39:00 +0200 Subject: [PATCH] implement shared calendar activation on js-side --- apps/calendar/js/calendar.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/calendar/js/calendar.js b/apps/calendar/js/calendar.js index a267f15f78..ebfe31723d 100644 --- a/apps/calendar/js/calendar.js +++ b/apps/calendar/js/calendar.js @@ -499,6 +499,9 @@ Calendar={ Share:{ currentid: 'false', idtype: '', + activation:function(object,owner,id){ + $.getJSON(OC.filePath('calendar', 'ajax/share', 'activation.php'),{id:id, idtype:'calendar', activation:object.checked?1:0}); + }, dropdown:function(userid, calid){ $('.calendar_share_dropdown').remove(); $('
').appendTo('#'+userid+'_'+calid); @@ -513,10 +516,7 @@ Calendar={ }, share:function(id, idtype, sharewith, sharetype){ $.getJSON(OC.filePath('calendar', 'ajax/share', 'share.php'),{id:id, idtype:idtype, sharewith:sharewith, sharetype:sharetype}, function(data){ - if(sharetype == 'public'){ - $('#public_token').val(window.location.protocol + '//' + location.host + OC.linkTo('calendar', 'share.php?t=' + data.message)); - $('#public_token').css('display', 'block'); - } + }); }, unshare:function(id, idtype, sharewith, sharetype){