| 1 |
jQuery(document).ready( |
| 2 |
function($) { |
| 3 |
var $parent = $('.notice-iworks-rate'); |
| 4 |
$('.iworks-rate-button, .notice-dismiss', $parent).on('click', function(e) { |
| 5 |
var data = { |
| 6 |
action: 'iworks_rate_button', |
| 7 |
plugin_id: $parent.data('id'), |
| 8 |
button: $(this).data('action')? $(this).data('action') : ( $parent.data('action')? $parent.data('action') : 'hide' ), |
| 9 |
_wpnonce: $parent.data('nonce') |
| 10 |
}; |
| 11 |
if ('get-help' === $(this).data('action')) { |
| 12 |
return true; |
| 13 |
} |
| 14 |
$.post( |
| 15 |
$parent.data('ajax-url'), |
| 16 |
data, |
| 17 |
function(response) { |
| 18 |
$parent.detach(); |
| 19 |
} |
| 20 |
); |
| 21 |
return true; |
| 22 |
}); |
| 23 |
} |
| 24 |
); |
| 25 |
|