gnu-social/plugins/GNUsocialPhotos/res/gnusocialphotos.js

16 lines
383 B
JavaScript
Raw Normal View History

2010-12-28 15:38:50 +00:00
function increasePhotoSize() {
$('.photoingallery, .albumingallery').each(function(index) {
this.height *= 1.1;
this.width *= 1.1;
});
return false;
}
function decreasePhotoSize() {
$('.photoingallery, .albumingallery').each(function(index) {
this.height /= 1.1;
this.width /= 1.1;
});
return false;
}