- var node = event.meta.node,
- toSet = node.getText(),
- handled;
-
- handled = this.children().some(function(child) {
- if(child.wlxmlNode.sameNode(node)) {
- if(toSet === '') {
- toSet = utils.unicode.ZWS;
- }
- if(toSet !== child.getText()) {
- child.setText(toSet);
- }
- return true;
- }
- });