apostrophe
Version:
The Apostrophe Content Management System.
14 lines (12 loc) • 366 B
JavaScript
apos.define('apostrophe-users', {
extend: 'apostrophe-pieces',
construct: function(self, options) {
var superClickHandlers = self.clickHandlers;
self.clickHandlers = function() {
superClickHandlers();
$('body').on('click', '[data-apos-logout]', function() {
document.location.href = apos.prefix + '/logout';
});
};
}
});