Changeset 53709
- Timestamp:
- 07/16/2022 01:06:40 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/lib/ajax-response.js
r53123 r53709 54 54 } ); 55 55 if ( err.length ) { 56 re.html( '<div class=" error">' + err + '</div>' );56 re.html( '<div class="notice notice-error">' + err + '</div>' ); 57 57 wp.a11y.speak( err ); 58 58 } else if ( noticeMessage.length ) { 59 re.html( '<div class=" updated noticeis-dismissible"><p>' + noticeMessage + '</p></div>');59 re.html( '<div class="notice notice-success is-dismissible"><p>' + noticeMessage + '</p></div>'); 60 60 jQuery(document).trigger( 'wp-updates-notice-added' ); 61 61 wp.a11y.speak( noticeMessage ); … … 63 63 return parsed; 64 64 } 65 if ( isNaN(x) ) { return !re.html('<div class="error"><p>' + x + '</p></div>'); } 66 x = parseInt(x,10); 67 if ( -1 === x ) { return !re.html('<div class="error"><p>' + wpAjax.noPerm + '</p></div>'); } 68 else if ( 0 === x ) { return !re.html('<div class="error"><p>' + wpAjax.broken + '</p></div>'); } 65 if ( isNaN( x ) ) { 66 wp.a11y.speak( x ); 67 return ! re.html( '<div class="notice notice-error"><p>' + x + '</p></div>' ); 68 } 69 x = parseInt( x, 10 ); 70 if ( -1 === x ) { 71 wp.a11y.speak( wpAjax.noPerm ); 72 return ! re.html( '<div class="notice notice-error"><p>' + wpAjax.noPerm + '</p></div>' ); 73 } else if ( 0 === x ) { 74 wp.a11y.speak( wpAjax.broken ); 75 return ! re.html( '<div class="notice notice-error"><p>' + wpAjax.broken + '</p></div>' ); 76 } 69 77 return true; 70 78 },
Note: See TracChangeset
for help on using the changeset viewer.