mirror of
https://gitlab.com/commento/commento.git
synced 2025-06-29 22:56:37 -04:00
9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
(function (global, document) {
|
|
|
|
global.logout = function() {
|
|
global.cookieDelete("commentoOwnerToken");
|
|
document.location = global.commentoOrigin + "/login";
|
|
}
|
|
|
|
} (window, document));
|