Beispiel #1
0
 process(parent: CompileElement, current: CompileElement, control: CompileControl) {
   var attributeMap = DOM.attributeMap(current.element);
   if (MapWrapper.contains(attributeMap, 'ignore-current')) {
     control.ignoreCurrentElement();
   }
 }
Beispiel #2
0
 process(parent: CompileElement, current: CompileElement, control: CompileControl) {
   var attributeMap = DOM.attributeMap(current.element);
   if (attributeMap.has('ignore-current')) {
     control.ignoreCurrentElement();
   }
 }