We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Will make it easier to pre-define "modes".
if (obj.settings.cssClass) { tipso_bubble.addClass(obj.settings.cssClass); }
<div data-tipso-cssClass="error" class="tipso" />
$('.tipso').tipso({ cssClass: 'error' });
.tipso_bubble.error { background: red; color: white; } .tipso_bubble.error .tipso_arrow { border-color: transparent transparent red; }
The text was updated successfully, but these errors were encountered:
show: function() { var tipso_bubble = this.tooltip(), obj = this, $win = this.win;
replace to:
show: function() { var tipso_bubble = this.tooltip(), obj = this, $win = this.win; if (obj.settings.cssClass) { tipso_bubble.addClass(obj.settings.cssClass); }
and use:
Sorry, something went wrong.
No branches or pull requests
Will make it easier to pre-define "modes".
The text was updated successfully, but these errors were encountered: