undo extra tabs before ach line introduced automatically by copy-and-pasting code

This commit is contained in:
Tom 2024-05-22 18:59:19 -04:00
parent be30b429f8
commit f7c12a716b

View File

@ -34,7 +34,7 @@
(function( $ ){ (function( $ ){
/** /**
* You shouldn't have to create a TiledImage instance directly; get it asynchronously by * You shouldn't have to create a TiledImage instance directly; get it asynchronously by
* using {@link OpenSeadragon.Viewer#open} or {@link OpenSeadragon.Viewer#addTiledImage} instead. * using {@link OpenSeadragon.Viewer#open} or {@link OpenSeadragon.Viewer#addTiledImage} instead.
* @class TiledImage * @class TiledImage
@ -84,7 +84,7 @@
* @param {Object} [options.ajaxHeaders={}] * @param {Object} [options.ajaxHeaders={}]
* A set of headers to include when making tile AJAX requests. * A set of headers to include when making tile AJAX requests.
*/ */
$.TiledImage = function( options ) { $.TiledImage = function( options ) {
this._initialized = false; this._initialized = false;
/** /**
* The {@link OpenSeadragon.TileSource} that defines this TiledImage. * The {@link OpenSeadragon.TileSource} that defines this TiledImage.
@ -229,9 +229,9 @@
this._ownAjaxHeaders = {}; this._ownAjaxHeaders = {};
this.setAjaxHeaders(ajaxHeaders, false); this.setAjaxHeaders(ajaxHeaders, false);
this._initialized = true; this._initialized = true;
}; };
$.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadragon.TiledImage.prototype */{ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadragon.TiledImage.prototype */{
/** /**
* @returns {Boolean} Whether the TiledImage needs to be drawn. * @returns {Boolean} Whether the TiledImage needs to be drawn.
*/ */
@ -2271,8 +2271,8 @@
_resetCoverage: function( coverage, level ) { _resetCoverage: function( coverage, level ) {
coverage[ level ] = {}; coverage[ level ] = {};
} }
}); });
}( OpenSeadragon )); }( OpenSeadragon ));