From 1ef5687e02cebccd5eb798d599dd336d4480c2d1 Mon Sep 17 00:00:00 2001 From: Jakub Skoczen Date: Mon, 10 Sep 2007 13:18:53 +0000 Subject: [PATCH] Solved: IE throwing exception if text contents of the node was an empty string. --- js/pz2.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/pz2.js b/js/pz2.js index 70be91d..5850c59 100644 --- a/js/pz2.js +++ b/js/pz2.js @@ -1,5 +1,5 @@ /* -** $Id: pz2.js,v 1.53 2007-09-03 20:13:22 adam Exp $ +** $Id: pz2.js,v 1.54 2007-09-10 13:18:53 jakub Exp $ ** pz2.js - pazpar2's javascript client library. */ @@ -804,7 +804,7 @@ Element_getTextContent = function (DOM_Element) { if ( typeof DOM_Element.textContent != 'undefined' ) { return DOM_Element.textContent; - } else if (DOM_Element.text ) { + } else if (typeof DOM_Element.text != 'undefined') { return DOM_Element.text; } else { throw new Error("Cannot get text content of the node, no such method."); -- 1.7.10.4