Minify_GeneralPage_View_ShowHelp.js 584 B

1234567891011121314151617181920212223242526272829
  1. function w3tc_show_minify_help() {
  2. W3tc_Lightbox.open({
  3. id: 'w3tc-overlay',
  4. close: '',
  5. width: 800,
  6. height: 610,
  7. url: ajaxurl + '?action=w3tc_ajax&_wpnonce=' + w3tc_nonce +
  8. '&w3tc_action=minify_help',
  9. callback: function(lightbox) {
  10. jQuery('.btn-primary', lightbox.container).click(function() {
  11. lightbox.close();
  12. });
  13. lightbox.resize();
  14. }
  15. });
  16. }
  17. jQuery(function($) {
  18. $('#minify__enabled').click(function() {
  19. var checked = $(this).is(':checked');
  20. if (!checked)
  21. return;
  22. w3tc_show_minify_help();
  23. });
  24. });