add keybpoard shortcut ESC to close new post modal

This commit is contained in:
myleneb 2015-09-01 11:40:31 +02:00
parent 0f7b7100fb
commit b1a9c6d8ed

View File

@ -128,6 +128,13 @@ function reOrganizeTemplates() { // for nin's templating
});
}
$(document).keyup(function(e) {
if (e.keyCode == 27) {$('.mini-profile .post-area').removeClass('display');}
});
function reAppendModules() { // avoid w1200 things
$('.module.toptrends').detach().appendTo($('.dashboard.right'));
$('.module.who-to-follow').detach().appendTo($('.dashboard.right'));