summaryrefslogtreecommitdiff
path: root/script/postman.js
diff options
context:
space:
mode:
Diffstat (limited to 'script/postman.js')
-rw-r--r--script/postman.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/script/postman.js b/script/postman.js
index 0ae1947..0134430 100644
--- a/script/postman.js
+++ b/script/postman.js
@@ -1,6 +1,19 @@
jQuery(document).ready(function($) {
$( ".email-log-date" ).datepicker();
+ $('.notice-dismiss.postman-release-message').on('click', function() {
+ var $this = $(this);
+ var args = {
+ action: 'dismiss_version_notify',
+ security: $this.data('security'),
+ version: $this.data('version'),
+ };
+
+ $.post(ajaxurl, args, function() {
+ $this.parent().slideUp();
+ });
+ });
+
$('#postman_trash_all').on('click',function(e) {
if (confirm("Are You Sure?") == false) {
e.preventDefault();