Labs64 / GuideChimp

Create interactive guided product tours in minutes with the most non-technical friendly, lightweight and extendable library.

Home Page:https://www.labs64.com/guidechimp/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Custom buttons based on 'a' tag not showing up

v-rudkovskiy opened this issue · comments

Describe the bug
Custom buttons based on 'a' tag not showing up on tooltip

To Reproduce
Steps to reproduce the behavior:

  1. Create button:
var a = document.createElement('a');
a.innerHTML = 'Button';
a.href = 'http://some-link';
  1. Set button to custom buttons
 var tour = [ {
            element: '#some-element',
            title: 'Title',
            description: 'Description',
            buttons: [a],
        }];

Expected behavior
Link-button displayed in tooltip.