mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 21:26:10 +03:00
14 lines
311 B
JavaScript
14 lines
311 B
JavaScript
|
|
||
|
(function( $ ){
|
||
|
|
||
|
$.DisplayRect = function(x, y, width, height, minLevel, maxLevel) {
|
||
|
$.Rect.apply(this, [x, y, width, height]);
|
||
|
|
||
|
this.minLevel = minLevel;
|
||
|
this.maxLevel = maxLevel;
|
||
|
}
|
||
|
$.DisplayRect.prototype = new $.Rect();
|
||
|
$.DisplayRect.prototype.constructor = $.DisplayRect;
|
||
|
|
||
|
}( OpenSeadragon ));
|