2021-04-15 21:44:04 -04:00

26 lines
936 B
Plaintext

<h1>Dashboard#home</h1>
<p>Find me in app/views/dashboard/home.html.erb</p>
<div class="notice-me" style="width:300px;height:300px;background-color:whitesmoke;">
a content element to notice
</div>
<button id="restart_automatic">Restart the automatic tour</button>
<button id="show_manual">Show manual tour</button>
<button id="show_another_manual">Show ANOTHER manual tour</button>
<script>
document.querySelector("#restart_automatic").addEventListener("click", function() {
document.dispatchEvent(new Event('abraham:intro:start'));
});
document.querySelector("#show_manual").addEventListener("click", function() {
document.dispatchEvent(new Event('abraham:a_manual_tour:start'));
});
document.querySelector("#show_another_manual").addEventListener("click", function() {
document.dispatchEvent(new Event('abraham:another_manual_tour:start'));
});
</script>
<%= link_to "Other Page", dashboard_other_url %>