מדיה ויקי:Gadget-validate-template-params.js: הבדלים בין גרסאות בדף

מתוך צפונות ויקי
(ניסוי)
מ (עיצוב)
שורה 5: שורה 5:
$( this ).prepend(  
$( this ).prepend(  
$( '<p>' )
$( '<p>' )
.css( 'background-color', 'lightblue')
.css( { 'background-color': 'lightblue', padding: '5px', 'min-height': '1.4em' } )
.append( $('<span>')  
.append( $('<span>')  
.css( { 'float': 'left', border: 'solid black 2px', 'font-weight': 'bold' } )
.css( { 'float': 'left', border: 'solid grey 1px', 'font-weight': 'bold', padding: '0 4px' } )
.text( 'X' )
.text( 'X' )
.click( function() {  
.click( function() {  

גרסה מ־15:50, 24 במרץ 2016

$( function() { 
	$( '.paramvalidator-wrapper, .error.parameters' )
	.each( function() {
		if ( $.trim( $( this ).text() ).length )
			$( this ).prepend( 
				$( '<p>' )
				.css( { 'background-color': 'lightblue', padding: '5px', 'min-height': '1.4em' } )
				.append( $('<span>') 
					.css( { 'float': 'left', border: 'solid grey 1px', 'font-weight': 'bold', padding: '0 4px' } )
					.text( 'X' )				
					.click( function() { 
						$( this ).closest( '.paramvalidator-wrapper, .error.parameters' )
							.remove(); 
					} )
				)
			);
	} );
} );