commento/frontend/js/logout.js

9 lines
173 B
JavaScript
Raw Normal View History

2018-06-05 16:53:32 +08:00
(function (global, document) {
global.logout = function() {
global.cookieSet("commentoOwnerToken", "");
2018-06-05 16:53:32 +08:00
document.location = "/login";
}
} (window, document));