diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-10-27 22:56:22 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-10-27 22:56:22 +0200 |
commit | 8dd2f463f826d44299770919b7e9be21d83075f7 (patch) | |
tree | c17c15bd4255d244e384687789b5a7f94133aa5d | |
parent | 1e8e2ae353312dacc2a05f1005fa322566cb6012 (diff) | |
download | nextcloud-server-8dd2f463f826d44299770919b7e9be21d83075f7.tar.gz nextcloud-server-8dd2f463f826d44299770919b7e9be21d83075f7.zip |
Cleanup tipsy popups on more actions
-rw-r--r-- | apps/calendar/js/calendar.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/calendar/js/calendar.js b/apps/calendar/js/calendar.js index 47db5dc5fca..e943bee7057 100644 --- a/apps/calendar/js/calendar.js +++ b/apps/calendar/js/calendar.js @@ -107,6 +107,7 @@ Calendar={ },"json"); }, moveEvent:function(event, dayDelta, minuteDelta, allDay, revertFunc){ + $('.tipsy').remove(); $.post(OC.filePath('calendar', 'ajax', 'moveevent.php'), { id: event.id, dayDelta: dayDelta, minuteDelta: minuteDelta, allDay: allDay?1:0}, function(data) { if (data.status == 'success'){ @@ -117,6 +118,7 @@ Calendar={ }); }, resizeEvent:function(event, dayDelta, minuteDelta, revertFunc){ + $('.tipsy').remove(); $.post(OC.filePath('calendar', 'ajax', 'resizeevent.php'), { id: event.id, dayDelta: dayDelta, minuteDelta: minuteDelta}, function(data) { if (data.status == 'success'){ @@ -171,6 +173,7 @@ Calendar={ //} }, scrollCalendar:function(event){ + $('.tipsy').remove(); var direction; if(event.detail){ if(event.detail < 0){ |