From 3ec9b66bc9de7d0e3a9b13f3223a826aa7a67578 Mon Sep 17 00:00:00 2001 From: zero41120 Date: Tue, 11 Feb 2020 11:34:53 -0800 Subject: [PATCH] 1540 Use OSD defined isArray --- src/tiledimage.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/tiledimage.js b/src/tiledimage.js index 04b0ff00..bece9b66 100644 --- a/src/tiledimage.js +++ b/src/tiledimage.js @@ -689,9 +689,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag var isXYObject = function(obj) { return obj instanceof $.Point || (typeof obj.x === 'number' && typeof obj.y === 'number'); }; - var isArray = function(obj) { - return Object.prototype.toString.call(obj) === '[object Array]'; - }; + var objectToSimpleXYObject = function(objs) { return objs.map(function(obj) { try { @@ -707,7 +705,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag }; try { - if (!isArray(polygons)) { + if ($.isArray(polygons)) { throw new Error('Provided cropping polygon is not an array'); } this._croppingPolygons = polygons.map(function(polygon){