function showExampleTexts()

in archive/src/app/directives/sententree-directive.js [496:505]


        function showExampleTexts(d) {
          var tooltipDiv = document.getElementById('tweet-display-area');
          var html = '';
          for (var i = 0; i < 5; i++ ) {
            if (d.leafSeq.DBs[i]) {
              html += '<p><span style="font-size:16px">' + d.leafSeq.DBs[i].rawText + '</span></p>';
            }
          }
          tooltipDiv.innerHTML = html;
        }