FACT++  1.0
function gray (   id,
  str 
)

Definition at line 108 of file index.js.

References str, valid(), and var().

Referenced by UIConnector::initHistograms(), and process_status().

109 {
110  var e = document.getElementById(id);
111  if (!e)
112  return;
113 
114  if (valid(str) == true)
115  {
116  e.style.color="#000";
117  e.style.textDecoration="";
118  }
119  else
120  {
121  e.style.color="#daa";
122  e.style.textDecoration="line-through";
123  }
124 
125 }
char str[80]
Definition: test_client.c:7
po::typed_value< T > * var(T *ptr=0)
function valid(str)
Definition: index.js:85

+ Here is the call graph for this function:

+ Here is the caller graph for this function: