commento/frontend/js/logout.js

9 lines
197 B
JavaScript
Raw Normal View History

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