global.ts 234 B

123456789
  1. var notifyCenter = new cc.EventTarget();
  2. window["onWebViewMessage"] = function (data) {
  3. // console.log(data);
  4. notifyCenter.emit('webViewMessage', data);
  5. }
  6. // module.exports = notifyCenter;
  7. export { notifyCenter as default };