Skip to content

Commit

Permalink
Merge pull request #1 from sassoftware/p-brmorr-rowCount
Browse files Browse the repository at this point in the history
use documented rowCount vs availableRowCount
  • Loading branch information
jbrown1618 authored Aug 22, 2019
2 parents 6dbb5f2 + 3f666d0 commit 4c0964c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/registerDataDrivenContent.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@

// Receive data and create an html table in the 'data-driven-content' div
function handleDataMessage(message) {
if (message && message.availableRowCount >= 0) {
if (message && message.rowCount >= 0) {
// Find the index of the brush column
const brushColumnIndex = message.columns.findIndex((column) => column.usage === 'brush');

Expand Down

0 comments on commit 4c0964c

Please sign in to comment.