PluginProbe
E2Pdf – Export Pdf Tool for WordPress / 1.03.07
E2Pdf – Export Pdf Tool for WordPress v1.03.07
1.32.49 1.32.48 1.32.43 1.32.40 1.32.34 1.32.32 1.32.31 1.32.26 1.32.22 1.32.23 1.32.18 1.32.17 1.32.15 trunk 1.00.00 1.00.13 1.01.01 1.02.02 1.03.07 1.04.07 1.05.03 1.06.02 1.07.11 1.08.00 1.08.06 All 72 releases
e2pdf / js / e2pdf.frontend.js

e2pdf.frontend.js in E2Pdf – Export Pdf Tool for WordPress 1.03.07, at js/e2pdf.frontend.js

15 lines 402 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(document).ready(function () {
2 if (jQuery('.e2pdf-download.e2pdf-auto').length > 0) {
3 jQuery('.e2pdf-download.e2pdf-auto').each(function () {
4 if (jQuery(this).hasClass('e2pdf-inline')) {
5 window.open(jQuery(this).attr('href'), '_blank');
6 } else {
7 location.href = jQuery(this).attr('href');
8 }
9 });
10 }
11 });
12
13
14
15