From f1882259e25526a4f71c8385b73c2865b00a5d50 Mon Sep 17 00:00:00 2001 From: thatcher Date: Tue, 13 Dec 2011 18:24:04 -0500 Subject: [PATCH] removed _DziTileSourceHelper anti-pattern in favor of direct object literal containing helper methods --- openseadragon.js | 6 +----- src/dzitilesource.js | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/openseadragon.js b/openseadragon.js index 111c8bf9..98f90780 100644 --- a/openseadragon.js +++ b/openseadragon.js @@ -2652,11 +2652,8 @@ $.DziTileSource.prototype.tileExists = function(level, x, y) { return false; }; -$._DziTileSourceHelper = function() { -}; - -$._DziTileSourceHelper.prototype = { +$.DziTileSourceHelper = { createFromXml: function(xmlUrl, xmlString, callback) { var async = typeof (callback) == "function"; var error = null; @@ -2802,7 +2799,6 @@ $._DziTileSourceHelper.prototype = { } }; -$.DziTileSourceHelper = new $._DziTileSourceHelper(); }( OpenSeadragon )); diff --git a/src/dzitilesource.js b/src/dzitilesource.js index 4ab9a084..e42a11b2 100644 --- a/src/dzitilesource.js +++ b/src/dzitilesource.js @@ -70,11 +70,8 @@ $.DziTileSource.prototype.tileExists = function(level, x, y) { return false; }; -$._DziTileSourceHelper = function() { -}; - -$._DziTileSourceHelper.prototype = { +$.DziTileSourceHelper = { createFromXml: function(xmlUrl, xmlString, callback) { var async = typeof (callback) == "function"; var error = null; @@ -220,6 +217,5 @@ $._DziTileSourceHelper.prototype = { } }; -$.DziTileSourceHelper = new $._DziTileSourceHelper(); }( OpenSeadragon ));