diff options
| author | Owen <despito@MacBook-Pro-de-Despito.local> | 2014-08-08 15:49:05 +0300 |
|---|---|---|
| committer | Owen <despito@MacBook-Pro-de-Despito.local> | 2014-08-08 15:49:05 +0300 |
| commit | 062b9b24c521d5153ed5b8cba43fd367784762d1 (patch) | |
| tree | d23a3b1dd23b7233f19d80a8e6ede5554d71ba64 /scripts/textanalysis.js | |
| parent | e804d1289e4c5d85279f6853754eaf42c883ba7c (diff) | |
Fixed 3 node star case bug
Diffstat (limited to 'scripts/textanalysis.js')
| -rw-r--r-- | scripts/textanalysis.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/textanalysis.js b/scripts/textanalysis.js index 311a1ae8..fcf20af6 100644 --- a/scripts/textanalysis.js +++ b/scripts/textanalysis.js @@ -221,7 +221,7 @@ function TextAnalyser2(newtext, finalize) { if (orderStack.length > 0) graph.addNode("", "bubble", "temp"); var abnormalGraph=false; - if(newlinks.length >= 3 && ANDcount<2 )abnormalGraph=true; + if(newlinks.length >= 3 && ANDcount<1 )abnormalGraph=true; //0-N ORDER STACK for (var m = 0; m < orderStack.length - 1; m++) { |
