Bootlint W016 issue
by Herst
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootlint/latest/bootlint.min.js"></script>
<button type="button" id="myButton" class="btn btn-primary" autocomplete="off" data-content="Now check the console.">
Click me!
</button>
JavaScript
$('#myButton')
.on('shown.bs.popover', function () {
bootlint.showLintReportForCurrentDocument([]);
})
.click(function () {
$(this)
.button('loading')
.popover('show')
});