var old_callback = options.callback || function() { };
this.noupdate_hash_onenter = true;
+ this.vsplitbar = 'GALERIA';
options.callback = function(){
var self = this;
event.preventDefault();
self.setPage($(this).val());
});
-
+
$('.previous-page', this.$element).click(function(){
self.setPage(parseInt(self.$numberInput.val(),10) - 1);
});
ScanGalleryPerspective.prototype.setPage = function(newPage){
newPage = normalizeNumber(newPage, this.doc.galleryImages.length);
+ $('#imagesCount').html("/"+this.doc.galleryImages.length);
this.$numberInput.val(newPage);
this.config().page = newPage;
$('.gallery-image img', this.$element).attr('src', this.doc.galleryImages[newPage - 1]);
$.wiki.Perspective.prototype.onEnter.call(this);
+ $('.vsplitbar').not('.active').trigger('click');
+ $(".vsplitbar-title").html("↓ GALERIA ↓");
+
this.doc.refreshGallery({
success: function(doc, data){
self.$image.show();
$.wiki.ScanGalleryPerspective = ScanGalleryPerspective;
-})(jQuery);
\ No newline at end of file
+})(jQuery);