// --- Pro vypnutí automatického uložení stránky přes klávesu Enter ---
var disableEnter = function(e) {
var key = (window.event ? window.event.keyCode /*IE*/ : e.which /*FF*/);
return (key != 13);
}
$(function() {
if(x = document.getElementById('wpSummary')) x.onkeypress = disableEnter;
if(x = document.getElementById('wpMinoredit')) x.onkeypress = disableEnter;
if(x = document.getElementById('wpWatchthis')) x.onkeypress = disableEnter;
});