From 27189ae5837705c6f2f4df1397c5b42f7fa761aa Mon Sep 17 00:00:00 2001 From: thatcher Date: Tue, 27 Dec 2011 20:58:16 -0500 Subject: [PATCH] removed identity assignment --- openseadragon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openseadragon.js b/openseadragon.js index 7da62fae..dde985c6 100644 --- a/openseadragon.js +++ b/openseadragon.js @@ -2219,7 +2219,7 @@ $.Strings = { (function( $ ){ -$.Point=$.Point = function(x, y) { +$.Point = function(x, y) { this.x = typeof (x) == "number" ? x : 0; this.y = typeof (y) == "number" ? y : 0; };