MediaWiki:Common.js: Difference between revisions
Content deleted Content added
No edit summary |
|||
Line 303:
}
};
// Disable submitting form with return key
$( 'form[name="paypalcontribution"]' ).bind( 'keypress', function(e) {
var code = ( e.keyCode ? e.keyCode : e.which );
if ( code == 13 ) return false;
});
if ( document.paypalcontribution ) {
|