diff --git a/changelog.txt b/changelog.txt index acfc8977..26d56a2c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -28,6 +28,7 @@ OPENSEADRAGON CHANGELOG * Added optimization for large numbers of overlays: `checkResize = false` option for OpenSeadragon.Overlay (#365) * Updated full screen API, adding support for Opera and IE11 and allowing keyboard input in Chrome (#358) * Various fixes to bring OpenSeadragon into W3C compliance (#375) +* Added separate flags for turning off each of the nav buttons (#376) 1.0.0: diff --git a/src/openseadragon.js b/src/openseadragon.js index ba0eb340..3be339af 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -401,49 +401,49 @@ * * @property {String} zoomInButton * Set the id of the custom 'Zoom in' button to use. - * This is usefull to have a custom button anywhere in the web page.
+ * This is useful to have a custom button anywhere in the web page.
* To only change the button images, consider using * {@link OpenSeadragon.Options.navImages} * * @property {String} zoomOutButton * Set the id of the custom 'Zoom out' button to use. - * This is usefull to have a custom button anywhere in the web page.
+ * This is useful to have a custom button anywhere in the web page.
* To only change the button images, consider using * {@link OpenSeadragon.Options.navImages} * * @property {String} homeButton * Set the id of the custom 'Go home' button to use. - * This is usefull to have a custom button anywhere in the web page.
+ * This is useful to have a custom button anywhere in the web page.
* To only change the button images, consider using * {@link OpenSeadragon.Options.navImages} * * @property {String} fullPageButton * Set the id of the custom 'Toggle full page' button to use. - * This is usefull to have a custom button anywhere in the web page.
+ * This is useful to have a custom button anywhere in the web page.
* To only change the button images, consider using * {@link OpenSeadragon.Options.navImages} * * @property {String} rotateLeftButton * Set the id of the custom 'Rotate left' button to use. - * This is usefull to have a custom button anywhere in the web page.
+ * This is useful to have a custom button anywhere in the web page.
* To only change the button images, consider using * {@link OpenSeadragon.Options.navImages} * * @property {String} rotateRightButton * Set the id of the custom 'Rotate right' button to use. - * This is usefull to have a custom button anywhere in the web page.
+ * This is useful to have a custom button anywhere in the web page.
* To only change the button images, consider using * {@link OpenSeadragon.Options.navImages} * * @property {String} previousButton * Set the id of the custom 'Previous page' button to use. - * This is usefull to have a custom button anywhere in the web page.
+ * This is useful to have a custom button anywhere in the web page.
* To only change the button images, consider using * {@link OpenSeadragon.Options.navImages} * * @property {String} nextButton * Set the id of the custom 'Next page' button to use. - * This is usefull to have a custom button anywhere in the web page.
+ * This is useful to have a custom button anywhere in the web page.
* To only change the button images, consider using * {@link OpenSeadragon.Options.navImages} * @@ -811,7 +811,7 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){ tileHost: null, initialPage: 0, crossOriginPolicy: false, - + //PAN AND ZOOM SETTINGS AND CONSTRAINTS panHorizontal: true, panVertical: true,