initial temp

This commit is contained in:
Jiiks 2015-08-25 14:26:36 +03:00
parent 3a508767cc
commit 87518da795
1 changed files with 16 additions and 0 deletions

16
js/emotemodule.js Normal file
View File

@ -0,0 +1,16 @@
var observer;
(function() {
observer = new MutationObserver(function(mutations) {
mutations.forEach(mutation) {
for(var i = 0 ; i < mutation.addedNodes.length ; ++i) {
var next = mutation.addedNodes.item(i);
console.log(next);
}
}
});
obsever.observe(document, {childList: true, subtree: true});
})();