From ced59b9827791f6035b0a22e2b79f03e1e03e071 Mon Sep 17 00:00:00 2001 From: thatcher Date: Tue, 13 Dec 2011 18:06:06 -0500 Subject: [PATCH] removed empty dzi.js from src directory --- openseadragon.js | 14 ++++++-------- src/dzi.js | 6 ------ 2 files changed, 6 insertions(+), 14 deletions(-) delete mode 100644 src/dzi.js diff --git a/openseadragon.js b/openseadragon.js index 3ed8e8f5..fabbc73a 100644 --- a/openseadragon.js +++ b/openseadragon.js @@ -3558,18 +3558,16 @@ $.Drawer = function(source, viewport, elmt) { this.elmt = this._container; - this._init(); + + this._canvas.style.width = "100%"; + this._canvas.style.height = "100%"; + this._canvas.style.position = "absolute"; + this._container.style.textAlign = "left"; // explicit left-align + this._container.appendChild(this._canvas); }; $.Drawer.prototype = { - _init: function() { - this._canvas.style.width = "100%"; - this._canvas.style.height = "100%"; - this._canvas.style.position = "absolute"; - this._container.style.textAlign = "left"; // explicit left-align - this._container.appendChild(this._canvas); - }, _compareTiles: function(prevBest, tile) { if (!prevBest) { return tile; diff --git a/src/dzi.js b/src/dzi.js deleted file mode 100644 index fa819e32..00000000 --- a/src/dzi.js +++ /dev/null @@ -1,6 +0,0 @@ - -(function( $ ){ - - - -}( OpenSeadragon ));