Procházet zdrojové kódy

Node nale shows "f" when "filter true" is selected and "t" (triggername) when "trigger only by single topic" is selected.

master
Massimo před 5 roky
rodič
revize
255e7d1e6d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      boolean-logic-ultimate/BooleanLogicUltimate.html

+ 1
- 1
boolean-logic-ultimate/BooleanLogicUltimate.html Zobrazit soubor

@@ -56,7 +56,7 @@
label:
function() {
let label = "";
let filtered=this.filtertrue=="both" ? "" : " f" ;
let filtered=this.filtertrue=="both" ? "" : "f" ;
let trigger="";
if(typeof this.outputtriggeredby !== "undefined") trigger=this.outputtriggeredby=="all" ? "" : "t (" + this.triggertopic+")";
label= this.inputCount + ((filtered+trigger)==""?" Boolean Logic":(filtered+trigger));

Načítá se…
Zrušit
Uložit