소스 검색

Now using handler's 'this' instead of event.target... Bubbling works now.

dev-tmpl
Bryan Miller 6 년 전
부모
커밋
72a47fab3c
1개의 변경된 파일12개의 추가작업 그리고 15개의 파일을 삭제
  1. +12
    -15
      app/js/ui/Emitters.js

+ 12
- 15
app/js/ui/Emitters.js 파일 보기

@@ -2,24 +2,21 @@ import GlobalEvents from "/app/js/EventCaller.js";


function handle_emitter(event){
var el = event.target;
if (el){
if (el.hasAttribute("emit")){
var args = [el.getAttribute("emit")];
if (el.hasAttribute("emit-args")){
try {
var j = JSON.parse(el.getAttribute("emit-args"));
if (j instanceof Array){
args.concat(j);
} else {
args.push(j);
}
} catch (e) {
console.log("Failed to emit '" + args[0] + "'. Attribute 'emit-args' contains malformed JSON.");
if (this.hasAttribute("emit")){
var args = [this.getAttribute("emit")];
if (this.hasAttribute("emit-args")){
try {
var j = JSON.parse(this.getAttribute("emit-args"));
if (j instanceof Array){
args.concat(j);
} else {
args.push(j);
}
} catch (e) {
console.log("Failed to emit '" + args[0] + "'. Attribute 'emit-args' contains malformed JSON.");
}
GlobalEvents.emit.apply(GlobalEvents, args);
}
GlobalEvents.emit.apply(GlobalEvents, args);
}
}


Loading…
취소
저장