Plugin Directory

Changeset 1176757


Ignore:
Timestamp:
06/08/2015 02:33:36 PM (11 years ago)
Author:
andreasbutze
Message:

minor update to pdf bar admin page layout

Location:
simple-pdf-bar/trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • simple-pdf-bar/trunk/define-fields-and-settings.php

    r1172628 r1176757  
    2222    } else {
    2323        $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>";
    2525        $html = '<hr><p class="description">';
    2626        $html .= 'Replace with another PDF here.';
  • simple-pdf-bar/trunk/readme.txt

    r1173713 r1176757  
    22Contributors: andreasbutze
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=YHSALBZF3LNQ6&lc=DK&item_name=Simple%20PDF%20Bar%20%28WP%2dplugin%29&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
    4 Tags: pdf, lightweight, lead, generation, bar
     4Tags: pdf, lightweight, lead, generation, bar, simple
    55Requires at least: 3.0.1
    66Tested up to: 4.2.2
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353== Changelog ==
    5454
     55= 1.0.2 =
     56* PDF-Bar admin page layout updated
     57
    5558= 1.0.1 =
    5659* Safari load problem fixed
     
    6265== Upgrade Notice ==
    6366
     67= 1.0.2 = Minor update to admin page layout
     68
    6469= 1.0.1 = Safari load issue fixed + double scrollbar removed
    6570
  • simple-pdf-bar/trunk/simple-pdf-bar.php

    r1172628 r1176757  
    6262    global $post_type;
    6363    if( 'pdfbar' == $post_type ){
    64         /** Add the color picker css file */       
     64         /** Add the color picker css file */       
    6565       wp_enqueue_style( 'wp-color-picker' );
    6666       /** 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__) );
    6870    }
    6971}
Note: See TracChangeset for help on using the changeset viewer.