You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// In event handlerif($(this).data().requiresCaptcha){$(this).popover({title: 'Please confirm that you are human',placement: 'auto bottom'});returnfalse;}
And when user clicks button with data-requires-captcha attribute set to true (I set it up for anonymous users), I intercept click, construct popover, and placing ReCaptcha into the popover body. But text from title attribute (obviously used for browsers' native link popover and I need it) is going to the Bootstrap popover title, and I see no way to replace it with my own (title specified in popover method call is ignored, as written in docs).
My thoughts:
Popover should not use standard title attribute, it should use something like data-title instead (with fallback to title if not present).
Popover should have some method to change title dynamically.
The text was updated successfully, but these errors were encountered:
All work has moved onto our next major release, v4. As such, this issue or pull request is being closed as a "won't fix." For additional help and support, we recommend utilizing our community resources. Thanks for your understanding, and see you on the other side of v4!
Hello!
I have next code:
And when user clicks button with
data-requires-captcha
attribute set to true (I set it up for anonymous users), I intercept click, construct popover, and placing ReCaptcha into the popover body. But text fromtitle
attribute (obviously used for browsers' native link popover and I need it) is going to the Bootstrap popover title, and I see no way to replace it with my own (title specified inpopover
method call is ignored, as written in docs).My thoughts:
title
attribute, it should use something likedata-title
instead (with fallback totitle
if not present).The text was updated successfully, but these errors were encountered: