Changeset 1176757
- Timestamp:
- 06/08/2015 02:33:36 PM (11 years ago)
- Location:
- simple-pdf-bar/trunk
- Files:
-
- 2 added
- 3 edited
-
css/pdf-bar-admin.css (added)
-
define-fields-and-settings.php (modified) (1 diff)
-
images/checkmark.png (added)
-
readme.txt (modified) (3 diffs)
-
simple-pdf-bar.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simple-pdf-bar/trunk/define-fields-and-settings.php
r1172628 r1176757 22 22 } else { 23 23 $attached_pdf = $filearray['url']; 24 echo "<div style='color: green;'>Attached PDF file: ". $attached_pdf . "</div>";24 echo "<div class='pdf-attached'>Attached PDF file: ". $attached_pdf . "</div>"; 25 25 $html = '<hr><p class="description">'; 26 26 $html .= 'Replace with another PDF here.'; -
simple-pdf-bar/trunk/readme.txt
r1173713 r1176757 2 2 Contributors: andreasbutze 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=YHSALBZF3LNQ6&lc=DK&item_name=Simple%20PDF%20Bar%20%28WP%2dplugin%29¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted 4 Tags: pdf, lightweight, lead, generation, bar 4 Tags: pdf, lightweight, lead, generation, bar, simple 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.2.2 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 == Changelog == 54 54 55 = 1.0.2 = 56 * PDF-Bar admin page layout updated 57 55 58 = 1.0.1 = 56 59 * Safari load problem fixed … … 62 65 == Upgrade Notice == 63 66 67 = 1.0.2 = Minor update to admin page layout 68 64 69 = 1.0.1 = Safari load issue fixed + double scrollbar removed 65 70 -
simple-pdf-bar/trunk/simple-pdf-bar.php
r1172628 r1176757 62 62 global $post_type; 63 63 if( 'pdfbar' == $post_type ){ 64 /** Add the color picker css file */64 /** Add the color picker css file */ 65 65 wp_enqueue_style( 'wp-color-picker' ); 66 66 /** Include pdfbar jQuery file with WordPress Color Picker dependency */ 67 wp_enqueue_script( 'pdf-admin-settings', plugins_url( '/js/pdf-admin-settings.js', __FILE__ ), array( 'wp-color-picker' ), false, true ); 67 wp_enqueue_script( 'pdf-admin-settings', plugins_url( '/js/pdf-admin-settings.js', __FILE__ ), array( 'wp-color-picker' ), false, true ); 68 /** Register admin stylesheet */ 69 wp_enqueue_style( 'pdf-admin-css', plugins_url('css/pdf-bar-admin.css', __FILE__) ); 68 70 } 69 71 }
Note: See TracChangeset
for help on using the changeset viewer.