-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Closed
Description
At least for the dashboard/file system browser, it would be a much cleaner ("no flicker") experience if, when clicking through the file system on our dashboard, we used the history API and manipulated the DOM directly. We do use the contents API for the directory listing, so the dashboard is probably one of the easiest spots to use history.pushState
and only update the view of the current directory.
history.pushState
, history.popState
, and history.replaceState
are all well supported across browsers now a days (and have been for a while).
/cc @jdfreder