mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-29 00:26:10 +03:00
Merge pull request #2153 from devbyjonah/deprecated_Alias
added warning for deprecated method buttons()
This commit is contained in:
commit
ad7f3449bb
@ -507,6 +507,12 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
|
|||||||
return this.open( tileSource );
|
return this.open( tileSource );
|
||||||
},
|
},
|
||||||
|
|
||||||
|
//deprecated
|
||||||
|
get buttons () {
|
||||||
|
$.console.warn('Viewer.buttons is deprecated; Please use Viewer.buttonGroup');
|
||||||
|
return this.buttonGroup;
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Open tiled images into the viewer, closing any others.
|
* Open tiled images into the viewer, closing any others.
|
||||||
* To get the TiledImage instance created by open, add an event listener for
|
* To get the TiledImage instance created by open, add an event listener for
|
||||||
|
Loading…
Reference in New Issue
Block a user