2021-04-15 21:06:32 -04:00

21 lines
721 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="show_manual">Show manual tour</button>
<button id="show_another_manual">Show ANOTHER manual tour</button>
<script>
document.querySelector("#show_manual").addEventListener("click", function() {
document.dispatchEvent(new Event('abraham:a_manual_tour:startNow'));
});
document.querySelector("#show_another_manual").addEventListener("click", function() {
document.dispatchEvent(new Event('abraham:another_manual_tour:startNow'));
});
</script>
<%= link_to "Other Page", dashboard_other_url %>