Comparing version
@@ -5,2 +5,5 @@ # on-load Change Log | ||
## 4.0.1 - 2018-08-10 | ||
* Allow observation before the document is ready - ([#39](https://github.com/shama/on-load/pull/39)) | ||
## 4.0.0 - 2018-08-10 | ||
@@ -7,0 +10,0 @@ * Only load/unload nodes if `document.documentElement.contains(node)` - ([#35](https://github.com/shama/on-load/pull/35)) |
23
index.js
/* global MutationObserver */ | ||
var document = require('global/document') | ||
var window = require('global/window') | ||
var assert = require('assert') | ||
var watch = Object.create(null) | ||
@@ -27,8 +26,12 @@ var KEY_ID = 'onloadid' + (new Date() % 9e6).toString(36) | ||
if (document.readyState === 'complete') startObserving(observer)() | ||
else document.addEventListener('DOMContentLoaded', startObserving(observer)) | ||
observer.observe(document.documentElement, { | ||
childList: true, | ||
subtree: true, | ||
attributes: true, | ||
attributeOldValue: true, | ||
attributeFilter: [KEY_ATTR] | ||
}) | ||
} | ||
module.exports = function onload (el, on, off, caller) { | ||
assert(document.body, 'on-load: will not work prior to DOMContentLoaded') | ||
on = on || function () {} | ||
@@ -45,14 +48,2 @@ off = off || function () {} | ||
function startObserving (obs) { | ||
return function () { | ||
obs.observe(document.body, { | ||
childList: true, | ||
subtree: true, | ||
attributes: true, | ||
attributeOldValue: true, | ||
attributeFilter: [KEY_ATTR] | ||
}) | ||
} | ||
} | ||
function turnon (index, el) { | ||
@@ -59,0 +50,0 @@ if (watch[index][0] && watch[index][2] === 0) { |
{ | ||
"name": "on-load", | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"description": "On load/unload events for DOM elements using a MutationObserver", | ||
@@ -5,0 +5,0 @@ "main": "server.js", |
6386
-2.9%95
-7.77%