helper script to ensure stuff builds that i dont use every day

This commit is contained in:
Adam D. Ruppe 2019-10-18 11:37:46 -04:00
parent 27f284e9a8
commit a1b52da48e
7 changed files with 61 additions and 34 deletions

View file

@ -1032,7 +1032,7 @@ void addEventListener(string event, Element what, EventHandler handler, bool bub
l.capturingEventHandlers[event] ~= handler;
}
void addEventListener(string event, Element what[], EventHandler handler, bool bubble = true) {
void addEventListener(string event, Element[] what, EventHandler handler, bool bubble = true) {
foreach(w; what)
addEventListener(event, w, handler, bubble);
}