vue-carousel icon indicating copy to clipboard operation
vue-carousel copied to clipboard

Disable the automatic assignation of title attributes to the pagination dots. So when you mouse over the dots, it won't say "Item 0", "Item 1", etc.

Open ErgysIsaj opened this issue 5 years ago • 5 comments

I would like to disable the automatic assignation of title attributes to the pagination dots. So when you mouse over the dots, it won't say "Item 0", "Item 1", etc.

ErgysIsaj avatar Oct 23 '19 12:10 ErgysIsaj

Hi @ErgysIsaj, I am also struggling with the same issue. Did you have any luck? Thanks

prabshah avatar Nov 05 '19 10:11 prabshah

I have the same problem as well. it will be better if we can disable it in the first place or we can even customize the title with our personal text

thamerbelfkihthamer avatar Jun 06 '20 21:06 thamerbelfkihthamer

any solution?

bushrakhalid786 avatar Aug 28 '20 09:08 bushrakhalid786

Hi, we are also facing this issue. Any solution to this.

devansh-webkul avatar Oct 27 '20 13:10 devansh-webkul

Hi,

There are two things you can do with this:

  1. The first one is already mentioned by customizing the title attributes.
  2. The second one I just tried an empty space in the title attribute and its work for me. This will not give a tooltip on the button.
<slide
    :key="index"
    :slot="`slide-${index}`"
    title=" "
></slide>

devansh-webkul avatar Oct 28 '20 06:10 devansh-webkul