X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/f938afb8ab4cb091d12e0ef0311eaea14b774798..1896ffefd4c448d4445bb510e9ac5992a8f20361:/redakcja/static/js/wiki/view_gallery.js diff --git a/redakcja/static/js/wiki/view_gallery.js b/redakcja/static/js/wiki/view_gallery.js index aa39e15f..1be30bf6 100644 --- a/redakcja/static/js/wiki/view_gallery.js +++ b/redakcja/static/js/wiki/view_gallery.js @@ -65,7 +65,7 @@ event.preventDefault(); self.setPage($(this).val()); }); - + $('.previous-page', this.$element).click(function(){ self.setPage(parseInt(self.$numberInput.val(),10) - 1); }); @@ -139,6 +139,7 @@ ScanGalleryPerspective.prototype.setPage = function(newPage){ newPage = normalizeNumber(newPage, this.doc.galleryImages.length); + $('#imagesCount').val(this.doc.galleryImages.length); this.$numberInput.val(newPage); this.config().page = newPage; $('.gallery-image img', this.$element).attr('src', this.doc.galleryImages[newPage - 1]); @@ -224,6 +225,8 @@ $.wiki.Perspective.prototype.onEnter.call(this); + $('.vsplitbar').not('.active').trigger('click'); + this.doc.refreshGallery({ success: function(doc, data){ self.$image.show(); @@ -248,4 +251,4 @@ $.wiki.ScanGalleryPerspective = ScanGalleryPerspective; -})(jQuery); \ No newline at end of file +})(jQuery);