# wp-to-buffer/6.2.2/lib/shared/js/review-notice.js

Social Media Auto Poster – Schedule &amp; Publish to Buffer, version 6.2.2. 35 lines.

- Page: https://pluginprobe.com/plugins/wp-to-buffer/6.2.2/code/lib/shared/js/review-notice.js
- Raw: https://pluginprobe.com/plugins/wp-to-buffer/6.2.2/raw/lib/shared/js/review-notice.js
- Modified: 2026-08-19T11:19:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-to-buffer/6.2.2/code/lib/shared/js/review-notice.js#L10-L20`.

```javascript
/**
 * Review notice functionality.
 *
 * @package WPZincDashboardWidget
 * @author WP Zinc
 */

jQuery( document ).ready(
	function ( $ ) {

		// Dismiss Review Notification.
		$( 'div.wpzinc-review-' + wpzinc_admin_review_notice.plugin_name ).on(
			'click',
			'a, button.notice-dismiss',
			function ( e ) {

				// Do request.
				$.post(
					ajaxurl,
					{
						action: wpzinc_admin_review_notice.action,
						nonce: wpzinc_admin_review_notice.nonce,
					},
					function ( response ) {
					}
				);

				// Hide notice.
				$( 'div.wpzinc-review-' + wpzinc_admin_review_notice.plugin_name ).hide();

			}
		);
	}
);

```
