for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* Admin script.
*/
jQuery( function( $ ) {
$( document ).on( 'click', '.lsx-theme-notice .notice-dismiss', function() {
$.ajax( {
url: ajaxurl,
ajaxurl
/** global: ajaxurl */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
data: {
action: 'lsx_dismiss_theme_notice'
}
} );
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.