Cdn_GoogleDrive_Page_View.js 488 B

123456789101112131415161718192021
  1. jQuery(function($) {
  2. $('.w3tc_cdn_google_drive_authorize').click(function() {
  3. window.location = w3tc_cdn_google_drive_url[0];
  4. });
  5. if (window.w3tc_cdn_google_drive_popup_url) {
  6. W3tc_Lightbox.open({
  7. id:'w3tc-overlay',
  8. close: '',
  9. width: 800,
  10. height: 500,
  11. url: w3tc_cdn_google_drive_popup_url[0],
  12. callback: function(lightbox) {
  13. lightbox.resize();
  14. },
  15. onClose: function() {
  16. }
  17. });
  18. }
  19. });