mirror of
https://gitlab.com/commento/commento.git
synced 2025-04-28 06:30:28 -04:00
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
(function (global, document) {
|
|
|
|
global.logout = function() {
|
|
global.cookieSet("commentoOwnerToken", "");
|
|
document.location = "/login";
|
|
}
|
|
|
|
} (window, document));
|