This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Omphaloskepsis/plugins/simply-exclude/js/simplyexclude_admin_dialog.js
2018-03-21 18:19:20 +00:00

25 lines
491 B
JavaScript

jQuery(document).ready(function() {
jQuery('a#se-show-actions-panel').click(function(){
var dialog_buttons = {};
dialog_buttons['Close'] = function() {
jQuery("#se-actions-panel").dialog('close');
}
jQuery("#se-actions-panel").dialog({
title: "Simply Exclude: Manage Actions",
autoOpen: false,
width: 650,
autoResize:true,
resizable: true,
buttons: dialog_buttons
});
jQuery("#se-actions-panel").dialog('open');
return false;
});
});