17 lines
239 B
JavaScript
17 lines
239 B
JavaScript
|
/*
|
||
|
(function ($) {
|
||
|
"use strict";
|
||
|
$( function () {
|
||
|
jQuery(document).on( 'click', '.update-to-torro', function() {
|
||
|
jQuery.ajax({
|
||
|
url: ajaxurl,
|
||
|
data: {
|
||
|
action: 'dismiss_upate_to_torro'
|
||
|
}
|
||
|
})
|
||
|
|
||
|
})
|
||
|
})
|
||
|
}(jQuery));
|
||
|
*/
|