Here's the rundown: The public timeline no longer exists. However: your private timelines now exist and can be scrolled back and forth. This is an addition to content warnings, boosts, and plenty of bug fixes. A code cleanup has been put into place as well to cut down on some of the crap. Overall it's pretty good. Reviewed-on: #14
5 lines
303 B
JavaScript
5 lines
303 B
JavaScript
let content = decodeURI(document.location.href.split("content=")[1]);
|
|
let username = decodeURI(document.location.href.split("username=")[1].split("&content")[0]);
|
|
|
|
document.getElementsByClassName("Handle")[0].innerHTML = username;
|
|
document.getElementsByClassName("DetailedText")[0].innerHTML = content;
|