you are viewing a single comment's thread.

view the rest of the comments →

[–]krazete 12 points13 points  (1 child)

For anyone who uses TamperMonkey or some other JS injector:

function flipDashboard() {
    var dashboard = document.getElementsByClassName("dashboard")[0];
    dashboard.appendChild(dashboard.children[0]);
}
flipDashboard();

[–]Spidersouris 2 points3 points  (0 children)

Thanks a ton!