Edit injection
This commit is contained in:
parent
9c87dd0979
commit
19b31e2a3d
10
js/main.js
10
js/main.js
|
@ -183,6 +183,16 @@ EmoteModule.prototype.init = function() {};
|
||||||
|
|
||||||
EmoteModule.prototype.obsCallback = function(mutation) {
|
EmoteModule.prototype.obsCallback = function(mutation) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
|
//Edit injection
|
||||||
|
if(mutation.addedNodes.length == 1) {
|
||||||
|
var n = mutation.addedNodes[0];
|
||||||
|
if(n.parentNode.tagName == "SPAN") {
|
||||||
|
//Should be edit
|
||||||
|
self.injectEmote(n);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
for(var i = 0 ; i < mutation.addedNodes.length ; ++i) {
|
for(var i = 0 ; i < mutation.addedNodes.length ; ++i) {
|
||||||
var next = mutation.addedNodes.item(i);
|
var next = mutation.addedNodes.item(i);
|
||||||
if(next) {
|
if(next) {
|
||||||
|
|
Loading…
Reference in New Issue