1
0
Fork 0
TweetDuck/resources/Content/login/setup_document_attributes.js

12 lines
314 B
JavaScript

/**
* Sets up attributes on the <html> element for styling login/logout pages.
*/
export default function() {
if (location.pathname === "/login") {
document.documentElement.setAttribute("login", "");
}
else if (location.pathname === "/logout") {
document.documentElement.setAttribute("logout", "");
}
};