מדיה ויקי:Gadget-validate-template-params.js: הבדלים בין גרסאות בדף
(לא להדביק כפתור אם אין תוכן (כנראה רק קטגוריה)) |
(ניסוי) |
||
שורה 4: | שורה 4: | ||
if ( $.trim( $( this ).text() ).length ) | if ( $.trim( $( this ).text() ).length ) | ||
$( this ).prepend( | $( this ).prepend( | ||
$( '< | $( '<p>' ) | ||
.css( 'background-color', 'lightblue') | |||
.append( $('<span>') | |||
.css( { 'float': 'left', border: 'solid black 2px', 'font-weight': 'bold' } ) | |||
.text( 'X' ) | |||
.click( function() { | |||
$( this ).closest( '.paramvalidator-wrapper, .error.parameters' ) | |||
.remove(); | |||
} ) | |||
) | |||
); | |||
} ); | } ); | ||
} ); | } ); |
גרסה מ־15:35, 24 במרץ 2016
$( function() {
$( '.paramvalidator-wrapper, .error.parameters' )
.each( function() {
if ( $.trim( $( this ).text() ).length )
$( this ).prepend(
$( '<p>' )
.css( 'background-color', 'lightblue')
.append( $('<span>')
.css( { 'float': 'left', border: 'solid black 2px', 'font-weight': 'bold' } )
.text( 'X' )
.click( function() {
$( this ).closest( '.paramvalidator-wrapper, .error.parameters' )
.remove();
} )
)
);
} );
} );