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

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

גרסה מ־15:51, 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', cursor: 'pointer' } )
					.text( 'X' )				
					.click( function() { 
						$( this ).closest( '.paramvalidator-wrapper, .error.parameters' )
							.remove(); 
					} )
				)
			);
	} );
} );