מדיה ויקי:Gadget-validate-template-params.js: הבדלים בין גרסאות בדף
מ (עיצוב) |
(?) |
||
שורה 1: | שורה 1: | ||
$( function() { | $( function() { | ||
$( '.error.parameters' ).css( 'float', 'left' ); | |||
$( '.paramvalidator-wrapper, .error.parameters' ) | $( '.paramvalidator-wrapper, .error.parameters' ) | ||
.each( function() { | .each( function() { |
גרסה מ־16:14, 24 במרץ 2016
$( function() {
$( '.error.parameters' ).css( 'float', 'left' );
$( '.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();
} )
)
);
} );
} );