Frio: provide single photo view template
This commit is contained in:
parent
0c1c39b679
commit
be6aa3cbf9
6 changed files with 231 additions and 0 deletions
32
view/theme/frio/js/mod_photos.js
Normal file
32
view/theme/frio/js/mod_photos.js
Normal file
|
@ -0,0 +1,32 @@
|
|||
|
||||
$(document).ready(function() {
|
||||
|
||||
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
||||
var selstr;
|
||||
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
|
||||
selstr = $(this).text();
|
||||
$('#jot-perms-icon').removeClass('unlock').addClass('lock');
|
||||
$('#jot-public').hide();
|
||||
});
|
||||
if(selstr == null) {
|
||||
$('#jot-perms-icon').removeClass('lock').addClass('unlock');
|
||||
$('#jot-public').show();
|
||||
}
|
||||
|
||||
}).trigger('change');
|
||||
|
||||
|
||||
});
|
||||
|
||||
$(window).load(function() {
|
||||
// Get picture dimensions
|
||||
var pheight = $("#photo-photo img").height();
|
||||
var pwidth = $("#photo-photo img").width();
|
||||
|
||||
// Append the diminsons of the picture to the css of the photo-photo div
|
||||
// we do this to make it possible to have overlay navigation buttons for the photo
|
||||
$("#photo-photo").css({
|
||||
"width": pwidth,
|
||||
"height": pheight
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue