You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setTimeout(function(){// delay for 1 second then run:console.log('window.location.href:',window.location.href);varbase=window.location.href.split('#')[0];varactive='#/active';console.log('Setting the window.location.href to:',base+active);window.location.href=base+active;console.log('window.location.href:',window.location.href,'updated!');console.log('window.history.length:',window.history.length);window.history.pushState(null,'Active',active);console.log('window.history.length:',window.history.length);},1000)
Routing in Web Application is surprisingly simple.
There are only a couple of functions we need to write but we want to achieve the following goals:
Acceptance Criteria
For: #44 "Elmish" Todo List Example
The text was updated successfully, but these errors were encountered: