Merge pull request #5732 from annando/fix-picture-posts
[friendica.git/.git] / view / theme / frio / js / mod_photos.js
1
2 $(document).ready(function() {
3
4         $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
5                 var selstr;
6                 $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
7                         selstr = $(this).text();
8                         $('#jot-perms-icon').removeClass('unlock').addClass('lock');
9                         $('#jot-public').hide();
10                 });
11                 if(selstr == null) { 
12                         $('#jot-perms-icon').removeClass('lock').addClass('unlock');
13                         $('#jot-public').show();
14                 }
15
16         }).trigger('change');
17
18         // Click event listener for the album edit link/button.
19         $("body").on('click', '#album-edit-link', function() {
20                 var modalUrl = $(this).attr("data-modal-url");
21
22                 if (typeof modalUrl !== "undefined") {
23                         addToModal(modalUrl, 'photo-album-edit-wrapper');
24                 }
25         });
26 });
27
28 $(window).load(function() {
29         // Get picture dimensions
30         var pheight = $("#photo-photo img").height();
31         var pwidth = $("#photo-photo img").width();
32
33         // Append the diminsons of the picture to the css of the photo-photo div
34         // we do this to make it possible to have overlay navigation buttons for the photo
35         $("#photo-photo").css({
36                 "width": pwidth,
37                 "height": pheight
38         });
39 });