IE8 does not support DOMSubtreeModified, use propertychange, MKWS-77
authorWolfram Schneider <wosch@indexdata.dk>
Thu, 13 Mar 2014 11:13:40 +0000 (11:13 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Thu, 13 Mar 2014 11:13:40 +0000 (11:13 +0000)
see http://stackoverflow.com/questions/19869547/domsubtreemodified-equivalent-in-ie

test/spec/mkws-pazpar2.js

index 9981ccc..2b1f250 100644 (file)
@@ -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");
         });