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

How to get rid of or change dots title tag.

Open bushrakhalid786 opened this issue 4 years ago • 0 comments

Bug Report

Current Behavior When you mouse over the navigation dots, it shows item 1, item 2, etc. How to get rid of them or change them? <button data-v-438fd353="" aria-hidden="false" role="tab" title="Item 0" value="Item 0" aria-label="Item 0" aria-selected="true" class="VueCarousel-dot VueCarousel-dot--active" style="margin-top: 20px; padding: 10px; width: 10px; height: 10px; background-color: rgb(0, 0, 0);"></button>

Still using this hack. const dots = document.getElementsByClassName('VueCarousel-dot'); for (let index = 0; index < dots.length; index += 1) { const element = dots[index]; element.title = '';}

Can you please fix this Bug

bushrakhalid786 avatar Aug 28 '20 09:08 bushrakhalid786