From: Wolfram Schneider Date: Thu, 13 Mar 2014 11:13:40 +0000 (+0000) Subject: IE8 does not support DOMSubtreeModified, use propertychange, MKWS-77 X-Git-Tag: 1.0.0~1318^2~7 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;ds=sidebyside;h=e5d88edd32664c10721130eb8dd7554377b4af05;p=mkws-moved-to-github.git IE8 does not support DOMSubtreeModified, use propertychange, MKWS-77 see http://stackoverflow.com/questions/19869547/domsubtreemodified-equivalent-in-ie --- diff --git a/test/spec/mkws-pazpar2.js b/test/spec/mkws-pazpar2.js index 9981ccc..2b1f250 100644 --- a/test/spec/mkws-pazpar2.js +++ b/test/spec/mkws-pazpar2.js @@ -318,7 +318,7 @@ describe("Check record list", function () { var waitcount = 0; // wait for new records - $("div.mkwsRecords").bind("DOMSubtreeModified", function () { + $("div.mkwsRecords").bind("DOMSubtreeModified propertychange", function () { waitcount++; debug("DOM div.mkwsRecords changed"); });