Twine Version: 2.9
How can I add a feedback button in the ui-bar, under “saves” and “restart” buttons. This button would link to a google form so users could give me feedback.
I’m trying this in story js but not working:
$(document).one(":passagedisplay", function () {
var feedbackButton = $('<button/>', {
text: 'Feedback',
click: function () {
window.open('https://link here...', '_blank');
}
});
$('#ui-bar').append(feedbackButton);
});