(txt)
| 101 | } |
| 102 | |
| 103 | function paulTalk(txt) { |
| 104 | choiceButtons |
| 105 | .style("opacity",0.3) |
| 106 | .classed("nohover", true) |
| 107 | .on("click", false); |
| 108 | |
| 109 | talkbubble.html(txt); |
| 110 | |
| 111 | arrowBox.transition().duration(300).style("opacity",1); |
| 112 | pbotHolder.transition().duration(300).style("opacity",1); |
| 113 | |
| 114 | if (stepCount+1 == codeSamples.length) { |
| 115 | ok.text("") |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | function makeChoice() { |
| 120 | var el = d3.select(this); |