function ScanGalleryPerspective(options){
var old_callback = options.callback || function() { };
- this.noupdate_hash_onenter = true;
this.vsplitbar = 'GALERIA';
options.callback = function(){
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;
* 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();