removed empty dzi.js from src directory

This commit is contained in:
thatcher 2011-12-13 18:06:06 -05:00
parent 9b5cf799bf
commit ced59b9827
2 changed files with 6 additions and 14 deletions

View File

@ -3558,18 +3558,16 @@ $.Drawer = function(source, viewport, elmt) {
this.elmt = this._container; this.elmt = this._container;
this._init();
};
$.Drawer.prototype = {
_init: function() {
this._canvas.style.width = "100%"; this._canvas.style.width = "100%";
this._canvas.style.height = "100%"; this._canvas.style.height = "100%";
this._canvas.style.position = "absolute"; this._canvas.style.position = "absolute";
this._container.style.textAlign = "left"; // explicit left-align this._container.style.textAlign = "left"; // explicit left-align
this._container.appendChild(this._canvas); this._container.appendChild(this._canvas);
}, };
$.Drawer.prototype = {
_compareTiles: function(prevBest, tile) { _compareTiles: function(prevBest, tile) {
if (!prevBest) { if (!prevBest) {
return tile; return tile;

View File

@ -1,6 +0,0 @@
(function( $ ){
}( OpenSeadragon ));