mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
Merge branch 'master' into raf
This commit is contained in:
commit
beadcdcc89
@ -3,6 +3,8 @@ OPENSEADRAGON CHANGELOG
|
||||
|
||||
0.9.129: (In Progress)
|
||||
|
||||
* Fixed an error when using navPrevNextWrap on single images (#135)
|
||||
|
||||
0.9.128:
|
||||
|
||||
* The navigator is now off by default (#102)
|
||||
|
@ -347,10 +347,6 @@ $.Viewer = function( options ) {
|
||||
beginControlsAutoHide( _this );
|
||||
} ); // initial fade out
|
||||
|
||||
if(this.navPrevNextWrap){
|
||||
this.previousButton.enable();
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
$.extend( $.Viewer.prototype, $.EventHandler.prototype, $.ControlDock.prototype, {
|
||||
@ -860,7 +856,9 @@ $.extend( $.Viewer.prototype, $.EventHandler.prototype, $.ControlDock.prototype,
|
||||
onBlur: onBlurHandler
|
||||
});
|
||||
|
||||
if( !this.navPrevNextWrap ){
|
||||
this.previousButton.disable();
|
||||
}
|
||||
|
||||
if( useGroup ){
|
||||
this.paging = new $.ButtonGroup({
|
||||
|
Loading…
Reference in New Issue
Block a user