27 lines
847 B
Plaintext
27 lines
847 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() {
|
|
Walter.startTour("intro");
|
|
});
|
|
|
|
document.querySelector("#show_manual").addEventListener("click", function() {
|
|
Walter.startTour("a_manual_tour");
|
|
});
|
|
|
|
document.querySelector("#show_another_manual").addEventListener("click", function() {
|
|
Walter.startTour("another_manual_tour");
|
|
});
|
|
</script>
|