summaryrefslogtreecommitdiff
path: root/www/templates/events-modal.html
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2020-10-04 19:14:42 -0400
committerPliable Pixels <pliablepixels@gmail.com>2020-10-04 19:14:42 -0400
commit05d6ccd17d8f5d592104bd7eff5661ab78dea110 (patch)
treecb22951bbeedd24902482c20d6fb02f5f8d60b82 /www/templates/events-modal.html
parentc8c8699ead20677754b4c2912f72691558374f05 (diff)
switch to browser fetch to download media for desktops, use timestamped filenames - should also resolve #989
Diffstat (limited to 'www/templates/events-modal.html')
-rw-r--r--www/templates/events-modal.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/templates/events-modal.html b/www/templates/events-modal.html
index 24df4b1e..de0f74c9 100644
--- a/www/templates/events-modal.html
+++ b/www/templates/events-modal.html
@@ -201,7 +201,7 @@
<i class="ion-ios-loop-strong"></i>-{{loginData.gapless? ('kOn' | translate): ('kOff' | translate)}}</a>
</li>
<li ng-if="isToggleListMenu">
- <a href="" ng-click="saveEventImageToPhoneWithPerms(false, 'any')">
+ <a href="" ng-click="saveEventImageWithPerms(false, currentEvent.Event.Id)">
<i class="ion-camera"></i>
</a>
</li>
@@ -209,14 +209,14 @@
<li ng-if="isToggleListMenu && defaultVideo !='' && defaultVideo != undefined">
- <a href="" ng-click="saveEventVideoToPhoneWithPerms()">
+ <a href="" ng-click="saveEventVideoWithPerms(currentEvent.Event.Id)">
<i class="ion-android-download"></i>
</a>
</li>
<li ng-if="defaultVideo=='' && isToggleListMenu">
- <a href="" ng-click="saveEventImageToPhoneWithPerms(true)">
+ <a href="" ng-click="saveEventImageWithPerms(true, currentEvent.Event.Id)">
<i class="ion-android-notifications"></i>
</a>
</li>