Plugin Directory

Changeset 1515612


Ignore:
Timestamp:
10/15/2016 08:52:33 PM (9 years ago)
Author:
caalami
Message:

tagging version 1.2.7

Location:
acf-link-picker-field
Files:
3 edited
5 copied

Legend:

Unmodified
Added
Removed
  • acf-link-picker-field/tags/1.2.7/acf-link_picker-v5.php

    r1515074 r1515612  
    126126   
    127127    function render_field( $field ) {
    128        
    129        
     128
     129        // add wysiwyg assets to page
     130        // Per https://www.advancedcustomfields.com/resources/acf_form/: "This will create a
     131        // hidden WYSIWYG field and enqueue the required JS templates for the WP media popups."
     132        if (function_exists('acf_enqueue_uploader')) {
     133            acf_enqueue_uploader();
     134        }
     135
    130136        /*
    131137        *  Review the data of $field.
  • acf-link-picker-field/tags/1.2.7/acf-link_picker.php

    r1515074 r1515612  
    55Plugin URI: https://github.com/ahebrank/ACF-Link-Picker-Field
    66Description: Adds an Advanced Custom Field field that allows the selection of a link utilising the WordPress link picker modal dialog
    7 Version: 1.2.6
     7Version: 1.2.7
    88Authors: Steve Marks (BIOSTALL), Andy Hebrank (caalami)
    99Author URI: http://biostall.com
  • acf-link-picker-field/tags/1.2.7/readme.txt

    r1515074 r1515612  
    6161== Changelog ==
    6262
     63= 1.2.7 =
     64* Enqueue wysiwyg assets if needed (thanks, [dmarkowicz](https://github.com/dmarkowicz))
     65
    6366= 1.2.6 =
    6467* Bugfix: revert setting empty values
  • acf-link-picker-field/trunk/acf-link_picker-v5.php

    r1515074 r1515612  
    126126   
    127127    function render_field( $field ) {
    128        
    129        
     128
     129        // add wysiwyg assets to page
     130        // Per https://www.advancedcustomfields.com/resources/acf_form/: "This will create a
     131        // hidden WYSIWYG field and enqueue the required JS templates for the WP media popups."
     132        if (function_exists('acf_enqueue_uploader')) {
     133            acf_enqueue_uploader();
     134        }
     135
    130136        /*
    131137        *  Review the data of $field.
  • acf-link-picker-field/trunk/acf-link_picker.php

    r1515074 r1515612  
    55Plugin URI: https://github.com/ahebrank/ACF-Link-Picker-Field
    66Description: Adds an Advanced Custom Field field that allows the selection of a link utilising the WordPress link picker modal dialog
    7 Version: 1.2.6
     7Version: 1.2.7
    88Authors: Steve Marks (BIOSTALL), Andy Hebrank (caalami)
    99Author URI: http://biostall.com
  • acf-link-picker-field/trunk/readme.txt

    r1515074 r1515612  
    6161== Changelog ==
    6262
     63= 1.2.7 =
     64* Enqueue wysiwyg assets if needed (thanks, [dmarkowicz](https://github.com/dmarkowicz))
     65
    6366= 1.2.6 =
    6467* Bugfix: revert setting empty values
Note: See TracChangeset for help on using the changeset viewer.