GuideChimp
GuideChimp copied to clipboard
Custom buttons based on 'a' tag not showing up
Describe the bug Custom buttons based on 'a' tag not showing up on tooltip
To Reproduce Steps to reproduce the behavior:
- Create button:
var a = document.createElement('a');
a.innerHTML = 'Button';
a.href = 'http://some-link';
- Set button to custom buttons
var tour = [ {
element: '#some-element',
title: 'Title',
description: 'Description',
buttons: [a],
}];
Expected behavior Link-button displayed in tooltip.
PR: https://github.com/Labs64/GuideChimp/pull/147