X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5913c54d19b8f6775633176032161d49f9b2f1aa..022b1747124fb6b6314c4eccf98d5bf89dff5d25:/src/redakcja/static/js/wiki/view_gallery.js?ds=sidebyside

diff --git a/src/redakcja/static/js/wiki/view_gallery.js b/src/redakcja/static/js/wiki/view_gallery.js
index 65a716af..e04342ff 100644
--- a/src/redakcja/static/js/wiki/view_gallery.js
+++ b/src/redakcja/static/js/wiki/view_gallery.js
@@ -47,7 +47,6 @@
     function ScanGalleryPerspective(options){
         var old_callback = options.callback || function() { };
 
-		this.noupdate_hash_onenter = true;
         this.vsplitbar = 'GALERIA';
 
         options.callback = function(){
@@ -109,10 +108,10 @@
 			old_callback.call(this);
         };
 
-        $.wiki.Perspective.call(this, options);
+        $.wiki.SidebarPerspective.call(this, options);
     };
 
-    ScanGalleryPerspective.prototype = new $.wiki.Perspective();
+    ScanGalleryPerspective.prototype = new $.wiki.SidebarPerspective();
 
     ScanGalleryPerspective.prototype._resizeImage = function(){
         var $img = this.$image;
@@ -224,13 +223,10 @@
      * Loading gallery
      */
     ScanGalleryPerspective.prototype.onEnter = function(success, failure){
-        var self = this;
+        $.wiki.SidebarPerspective.prototype.onEnter.call(this);
 
-        $.wiki.Perspective.prototype.onEnter.call(this);
+        var self = this;
 
-        $('.vsplitbar').not('.active').trigger('click');
-        $(".vsplitbar-title").html("↓ GALERIA ↓");        
-        
         this.doc.refreshGallery({
             success: function(doc, data){
                 self.$image.show();