Theme Customizer: Don't switch themes and update settings when the enter key is pressed. see #19910.

git-svn-id: http://svn.automattic.com/wordpress/trunk@20035 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
koopersmith 2012-02-29 06:28:02 +00:00
parent b198c61062
commit 0f960750b0

View File

@ -75,6 +75,12 @@
});
this.refresh();
// Prevent the form from saving when enter is pressed.
this.form.on( 'keydown', function( e ) {
if ( 13 === e.which ) // Enter
e.preventDefault();
});
},
loader: function() {
var self = this,