2021-04-16 16:25:16 -04:00

26 lines
849 B
Plaintext

<h1>Dashboard#home</h1>
<p>Find me in app/views/dashboard/home.html.erb</p>
<%= link_to "Other Page", dashboard_other_url %>
<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() {
Abraham.startTour("intro");
});
document.querySelector("#show_manual").addEventListener("click", function() {
Abraham.startTour("a_manual_tour");
});
document.querySelector("#show_another_manual").addEventListener("click", function() {
Abraham.startTour("another_manual_tour");
});
</script>