מדיה ויקי:Gadget-validate-template-params.js: הבדלים בין גרסאות בדף
(?) |
(ניסוי) |
||
שורה 13: | שורה 13: | ||
.click( function() { | .click( function() { | ||
$( this ).closest( '.paramvalidator-wrapper, .error.parameters' ) | $( this ).closest( '.paramvalidator-wrapper, .error.parameters' ) | ||
.remove(); | |||
} ) | |||
) | |||
.append( $('<span>') | |||
.css( { 'float': 'left', border: 'solid grey 1px', 'font-weight': 'bold', padding: '0 4px', cursor: 'pointer' } ) | |||
.text( 'XX' ) | |||
.click( function() { | |||
$( '.paramvalidator-wrapper, .error.parameters' ) | |||
.remove(); | .remove(); | ||
} ) | } ) |
גרסה מ־02:40, 30 במרץ 2016
$( function() {
$( '.error.parameters' ).css( 'float', 'left' );
$( '.paramvalidator-wrapper' ).prependTo( mw.util.$content );
$( '.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();
} )
)
.append( $('<span>')
.css( { 'float': 'left', border: 'solid grey 1px', 'font-weight': 'bold', padding: '0 4px', cursor: 'pointer' } )
.text( 'XX' )
.click( function() {
$( '.paramvalidator-wrapper, .error.parameters' )
.remove();
} )
)
);
} );
} );