* Dispatch a message with optional data up the facade parent tree.
(message, data)
| 110 | * Dispatch a message with optional data up the facade parent tree. |
| 111 | */ |
| 112 | notifyWorld(message, data) { |
| 113 | if (this.parent) { |
| 114 | this.parent.onNotifyWorld(this, message, data) |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Default onNotifyWorld handler just bubbles it up the parent chain. |
no test coverage detected