Skip to content

Commit

Permalink
Notes on callback
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewCRMartin committed Jun 19, 2014
1 parent e1fd7f5 commit 43a4b6e
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions external/README.md
Expand Up @@ -27,8 +27,19 @@ To use this, your HTML should include:
<link href="external/tooltipster-master/css/tooltipster.css" rel="stylesheet" />
<script type='text/javascript' src='external/tooltipster-master/js/jquery.tooltipster.min.js'></script>
<script>
$(document).ready(function() {
$('.tooltip').tooltipster();
});
function enableTooltipster()
{
$(document).ready(function() {
$('.tooltip').tooltipster();
});
}
enableTooltipster();
</script>

and your options for JSAV should include:

```javascript
options.callback = "enableTooltipster";
```


0 comments on commit 43a4b6e

Please sign in to comment.