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