object505/tipso

Breaking change 1.0.6 with titles

Fridus opened this issue · 1 comments

Attributes title no longer works since update 1.0.5 to 1.0.6.

<script>
$('.tip').tipso();
</script>
<div class="tip" title="Hello world">bla bla bla</div>

In the new version the title attribute is false by default. In order to use it write this:

$('.tip').tipso({
    useTitle: true
});