瀏覽代碼

Emitters now include the triggering element in the emitted event. Modal updated for the new element.

dev-bank
Bryan Miller 6 年之前
父節點
當前提交
9d661281c3
共有 2 個檔案被更改,包括 5 行新增4 行删除
  1. +3
    -2
      app/js/ui/Emitters.js
  2. +2
    -2
      app/js/ui/Modal.js

+ 3
- 2
app/js/ui/Emitters.js 查看文件



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);

+ 2
- 2
app/js/ui/Modal.js 查看文件

} }
}).bind(this)); }).bind(this));


GlobalEvents.listen("modal-open", (function(event){
GlobalEvents.listen("modal-open", (function(target, event){
if (event.hasOwnProperty("id") && typeof(event.id) === 'string'){ if (event.hasOwnProperty("id") && typeof(event.id) === 'string'){
var force = (event.hasOwnProperty("force")) ? event.force === true : false; var force = (event.hasOwnProperty("force")) ? event.force === true : false;
this.open_modal_id(event.id, force); this.open_modal_id(event.id, force);
} }
}).bind(this)); }).bind(this));


GlobalEvents.listen("modal-close", (function(event){
GlobalEvents.listen("modal-close", (function(target, event){
this.close_modal(); this.close_modal();
}).bind(this)); }).bind(this));
} }

Loading…
取消
儲存