Version Description
- Fixed minor JS bug.
Download this release
Release Info
| Developer | joostdevalk |
| Plugin | |
| Version | 3.0.1 |
| Comparing to | |
| See all releases | |
Code changes from version 3.0 to 3.0.1
- admin.js +0 -6
- images/pf-icon.png +0 -0
- pf.php +1 -1
- readme.txt +5 -1
admin.js
CHANGED
|
@@ -4,17 +4,14 @@ jQuery(document).ready(function() {
|
|
| 4 |
if (jQuery('.show_list:checked').val()=='manual') {
|
| 5 |
jQuery('#addmanual-help').show('slow');
|
| 6 |
jQuery('.content_placement').hide('slow');
|
| 7 |
-
jQuery('.content_placement input').attr('disabled','disabled');
|
| 8 |
} else {
|
| 9 |
jQuery('#addmanual-help').hide('slow');
|
| 10 |
jQuery('.content_placement').show('slow');
|
| 11 |
-
jQuery('.content_placement input').removeAttr('disabled');
|
| 12 |
}
|
| 13 |
});
|
| 14 |
if (jQuery('.show_list:checked').val()=='manual') {
|
| 15 |
jQuery('#addmanual-help').show('slow');
|
| 16 |
jQuery('.content_placement').hide();
|
| 17 |
-
jQuery('.content_placement input').attr('disabled','disabled');
|
| 18 |
}
|
| 19 |
|
| 20 |
jQuery('#colorSelector').ColorPicker({
|
|
@@ -37,15 +34,12 @@ jQuery(document).ready(function() {
|
|
| 37 |
jQuery('#disable_css').change(function(){
|
| 38 |
if ( jQuery('#disable_css').is(':checked') ) {
|
| 39 |
jQuery('.css').show('slow');
|
| 40 |
-
jQuery('.css input').removeAttr('disabled');
|
| 41 |
} else {
|
| 42 |
jQuery('.css').hide('slow');
|
| 43 |
-
jQuery('.css input').attr('disabled','disabled');
|
| 44 |
}
|
| 45 |
});
|
| 46 |
if ( jQuery('#disable_css').not(':checked') ) {
|
| 47 |
jQuery('.css').hide();
|
| 48 |
-
jQuery('.css input').attr('disabled','disabled');
|
| 49 |
}
|
| 50 |
|
| 51 |
jQuery('#text_size').change(function(){
|
| 4 |
if (jQuery('.show_list:checked').val()=='manual') {
|
| 5 |
jQuery('#addmanual-help').show('slow');
|
| 6 |
jQuery('.content_placement').hide('slow');
|
|
|
|
| 7 |
} else {
|
| 8 |
jQuery('#addmanual-help').hide('slow');
|
| 9 |
jQuery('.content_placement').show('slow');
|
|
|
|
| 10 |
}
|
| 11 |
});
|
| 12 |
if (jQuery('.show_list:checked').val()=='manual') {
|
| 13 |
jQuery('#addmanual-help').show('slow');
|
| 14 |
jQuery('.content_placement').hide();
|
|
|
|
| 15 |
}
|
| 16 |
|
| 17 |
jQuery('#colorSelector').ColorPicker({
|
| 34 |
jQuery('#disable_css').change(function(){
|
| 35 |
if ( jQuery('#disable_css').is(':checked') ) {
|
| 36 |
jQuery('.css').show('slow');
|
|
|
|
| 37 |
} else {
|
| 38 |
jQuery('.css').hide('slow');
|
|
|
|
| 39 |
}
|
| 40 |
});
|
| 41 |
if ( jQuery('#disable_css').not(':checked') ) {
|
| 42 |
jQuery('.css').hide();
|
|
|
|
| 43 |
}
|
| 44 |
|
| 45 |
jQuery('#text_size').change(function(){
|
images/pf-icon.png
ADDED
|
Binary file
|
pf.php
CHANGED
|
@@ -374,7 +374,7 @@ if ( ! class_exists( 'PrintFriendly_WordPress' ) ) {
|
|
| 374 |
'content_placement' => 'after',
|
| 375 |
'custom_image' => '',
|
| 376 |
'custom_text' => 'Print Friendly',
|
| 377 |
-
'disable_css' =>
|
| 378 |
'javascript_include' => 'on',
|
| 379 |
'javascript_fallback' => 'on',
|
| 380 |
'margin_top' => 0,
|
| 374 |
'content_placement' => 'after',
|
| 375 |
'custom_image' => '',
|
| 376 |
'custom_text' => 'Print Friendly',
|
| 377 |
+
'disable_css' => true,
|
| 378 |
'javascript_include' => 'on',
|
| 379 |
'javascript_fallback' => 'on',
|
| 380 |
'margin_top' => 0,
|
readme.txt
CHANGED
|
@@ -3,7 +3,7 @@ Contributors: printfriendly,joostdevalk
|
|
| 3 |
Tags: print, pdf, printer, printing, printable, widget, plugin
|
| 4 |
Requires at least: 2.8
|
| 5 |
Tested up to: 3.2.1
|
| 6 |
-
Stable tag: 3.0
|
| 7 |
|
| 8 |
The #1 Print and PDF button for your WordPress site. Printer Friendly pages without coding, css, or print.css. Fast, easy, and professional.
|
| 9 |
|
|
@@ -64,6 +64,10 @@ If you have any other issues with the plugin or the PrintFriendly widget, please
|
|
| 64 |
|
| 65 |
== Changelog ==
|
| 66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
= 3.0 =
|
| 68 |
|
| 69 |
* A complete overhaul of the plugin by renowned WordPress plugin developer <a href="http://yoast.com/">Joost de Valk</a>.
|
| 3 |
Tags: print, pdf, printer, printing, printable, widget, plugin
|
| 4 |
Requires at least: 2.8
|
| 5 |
Tested up to: 3.2.1
|
| 6 |
+
Stable tag: 3.0.1
|
| 7 |
|
| 8 |
The #1 Print and PDF button for your WordPress site. Printer Friendly pages without coding, css, or print.css. Fast, easy, and professional.
|
| 9 |
|
| 64 |
|
| 65 |
== Changelog ==
|
| 66 |
|
| 67 |
+
= 3.0.1 =
|
| 68 |
+
|
| 69 |
+
* Fixed minor JS bug.
|
| 70 |
+
|
| 71 |
= 3.0 =
|
| 72 |
|
| 73 |
* A complete overhaul of the plugin by renowned WordPress plugin developer <a href="http://yoast.com/">Joost de Valk</a>.
|
