commento/frontend/js/logout.js

9 lines
162 B
JavaScript
Raw Normal View History

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