I presume that putting <span id="rtxt"></span>
in the DOM and then doing this
onResultStats={function (time_taken, total_results) { $('#rtxt').text('Found ' + total_results + ' products (' + time_taken + 'ms).'); return null; }}
in the ResultList
is bad.
How is one supposed to put the results stats where one wants them?
(Would be nice to add some number formatting too.)