From 396bfd4a62aa344162785e9cee8a8af5aae79029 Mon Sep 17 00:00:00 2001 From: Joshua Roy Date: Thu, 6 Sep 2018 13:23:18 -0400 Subject: [PATCH] Removing blank alt tag notification --- functions.php | 10 +++++----- js/cs.js | 18 +++++++++--------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/functions.php b/functions.php index f61c881..e4c7e07 100644 --- a/functions.php +++ b/functions.php @@ -315,8 +315,8 @@ else{ } } -function report_blank_alt() { - mail('joshua.roy@uconn.edu', 'Empty Alt Tag', 'Image with empty alt tag found at '.$_POST['location'].' on image '.$_POST['image']); -} -add_action( 'wp_ajax_report_blank_alt', 'report_blank_alt' ); -add_action( 'wp_ajax_nopriv_report_blank_alt', 'report_blank_alt' ); \ No newline at end of file +//function report_blank_alt() { +// mail('joshua.roy@uconn.edu', 'Empty Alt Tag', 'Image with empty alt tag found at '.$_POST['location'].' on image '.$_POST['image']); +//} +//add_action( 'wp_ajax_report_blank_alt', 'report_blank_alt' ); +//add_action( 'wp_ajax_nopriv_report_blank_alt', 'report_blank_alt' ); \ No newline at end of file diff --git a/js/cs.js b/js/cs.js index b11bd1a..46a482c 100644 --- a/js/cs.js +++ b/js/cs.js @@ -195,16 +195,16 @@ jQuery(document).ready(function($) { $('#page img').each(function(){ var alt = $(this).attr('alt') if (undefined != alt){ - if(alt.length == 0 && (undefined == $(this).attr('role') || $(this).attr('role')!='presentation')){ - var data = { - 'action': 'report_blank_alt', - 'location': window.location.href, - 'image': $(this).attr('src') - }; + //if(alt.length == 0 && (undefined == $(this).attr('role') || $(this).attr('role')!='presentation')){ + // var data = { + // 'action': 'report_blank_alt', + // 'location': window.location.href, + // 'image': $(this).attr('src') + // }; // We can also pass the url value separately from ajaxurl for front end AJAX implementations - jQuery.post(ajax_object.ajax_url, data, function(response) { - }); - } + //jQuery.post(ajax_object.ajax_url, data, function(response) { + //}); + //} alt = alt.toLowerCase() //console.log('alt='+alt) if (alt.indexOf('.jpg') >= 0 || alt.indexOf('.png') >= 0 || alt.indexOf('.gif') >= 0 ){