wp-seo-dismissible.js 422 Bytes
/* jshint -W097 */
/* global wpseoMakeDismissible */
'use strict';
/**
 * Make notices dismissible
 *
 * This file should only be included in WordPress versions < 4.2, which don't have dismissible notices.
 * Before adding a dismiss button to notices with an `is-dismissible` class, a check is performed to see
 * if no such button has been added yet.
 */
jQuery(document).ready( function() {
	wpseoMakeDismissible();
});