X-Git-Url: https://scm.cri.ensmp.fr/git/Plinn.git/blobdiff_plain/9bd0dc7c3396bc90f5cef31a77b67db283fd12b8..6e23fff8782bef0ea8cfbc49519e46aea20634b5:/skins/ajax_scripts/javascript_events_api.js diff --git a/skins/ajax_scripts/javascript_events_api.js b/skins/ajax_scripts/javascript_events_api.js index bff4300..a442250 100644 --- a/skins/ajax_scripts/javascript_events_api.js +++ b/skins/ajax_scripts/javascript_events_api.js @@ -26,6 +26,7 @@ var getCopyOfNode; /* (node) returns a clone of the given node. * the node came from a foreign document (eg. XmlHttpRequest xml reponse) * to inject HMTL code inside tags where innerHtml is read only (IE) */ + var copyPrototype; // (descendant, parent) lightwheight javascript inheritance if (!history.pushState) { history.pushState = function(){}; @@ -222,9 +223,19 @@ function _build_clearSelection() { } } - buildMetaFunctions(); +addListener(window, 'load', function(evt) { + // html5 facade + if (!document.body.classList) { + var nop = function(){}; + var fakeDOMTokenList = {'length':0, 'item':nop, 'contains':nop, 'add':nop, 'remove':nop, 'toggle':nop}; + Element.prototype.classList = fakeDOMTokenList; + } +}); + + + var ELEMENT_NODE = 1; var TEXT_NODE = 3; var _setAttribute;