Skip to content

Commit

Permalink
Fix typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jpealing-fiscaltec committed Sep 16, 2016
1 parent 9d164f9 commit 0528994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Steps 2. and 4. are kind of optional in that if you skip them you won't see any
When calling QP.drawLines you can optionally pass the containing div as an argument in order to draw lines for only that query plan. You should also make sure that this function is called after the page has fully rendered and the containing div is visible, for example:

$(document).ready( function() {
QP.drawLines(&("#qpDiv"));
QP.drawLines($("#qpDiv"));
});

Normally the document ready event is suitable, however if the containing div is not visible by default then you will need to make sure that you call this function when the div is made visible. (No harm is done by calling when the div is not visible, it simply won't draw the lines correctly).
Expand Down

0 comments on commit 0528994

Please sign in to comment.