]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialPhotos/res/gnusocialphotos.js
3a959a5db49126b04c83b8d7540b50fc3e70ee19
[quix0rs-gnu-social.git] / plugins / GNUsocialPhotos / res / gnusocialphotos.js
1 function increasePhotoSize() {
2     $('.photoingallery, .albumingallery').each(function(index) {
3             this.height *= 1.1;
4             this.width *= 1.1;
5         });
6     return false;
7 }
8
9 function decreasePhotoSize() {
10     $('.photoingallery, .albumingallery').each(function(index) {
11             this.height /= 1.1;
12             this.width /= 1.1;
13         });
14     return false;
15 }