Plugin Directory

Changeset 1508054


Ignore:
Timestamp:
10/04/2016 09:51:45 AM (10 years ago)
Author:
Khothemes
Message:

new version

Location:
ultimate-widgets-light
Files:
681 added
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • ultimate-widgets-light/trunk/assets/admin/redux-core/framework.php

    r1482960 r1508054  
    7070            // This will make for easier support when we ask users what version they are using.
    7171
    72             public static $_version = '3.6.1.1';
     72            public static $_version = '3.6.2';
    7373            public static $_dir;
    7474            public static $_url;
  • ultimate-widgets-light/trunk/assets/admin/redux-core/inc/fields/date/field_date.js

    r1431909 r1508054  
    5656               
    5757                el.find( '.redux-datepicker' ).each( function() {
    58                    
    5958                    $( this ).datepicker({
     59                        "dateFormat":"mm/dd/yy",
    6060                        beforeShow: function(input, instance){
    6161                            var el = $('#ui-datepicker-div');
  • ultimate-widgets-light/trunk/assets/admin/redux-core/inc/fields/date/field_date.min.js

    r1431909 r1508054  
    1 !function(a){"use strict";redux.field_objects=redux.field_objects||{},redux.field_objects.date=redux.field_objects.date||{},a(document).ready(function(){}),redux.field_objects.date.init=function(b){b||(b=a(document).find(".redux-container-date:visible")),a(b).each(function(){var b=a(this),c=b;b.hasClass("redux-field-container")||(c=b.parents(".redux-field-container:first")),c.is(":hidden")||c.hasClass("redux-field-init")&&(c.removeClass("redux-field-init"),b.find(".redux-datepicker").each(function(){a(this).datepicker({beforeShow:function(b,c){var d=a("#ui-datepicker-div"),e=c.dpDiv;a(".redux-container:first").append(d),a("#ui-datepicker-div").hide(),setTimeout(function(){e.position({my:"left top",at:"left bottom",collision:"none",of:b})},1)}})}))})}}(jQuery);
     1!function(a){"use strict";redux.field_objects=redux.field_objects||{},redux.field_objects.date=redux.field_objects.date||{},a(document).ready(function(){}),redux.field_objects.date.init=function(b){b||(b=a(document).find(".redux-container-date:visible")),a(b).each(function(){var b=a(this),c=b;b.hasClass("redux-field-container")||(c=b.parents(".redux-field-container:first")),c.is(":hidden")||c.hasClass("redux-field-init")&&(c.removeClass("redux-field-init"),b.find(".redux-datepicker").each(function(){a(this).datepicker({dateFormat:"mm/dd/yy",beforeShow:function(b,c){var d=a("#ui-datepicker-div"),e=c.dpDiv;a(".redux-container:first").append(d),a("#ui-datepicker-div").hide(),setTimeout(function(){e.position({my:"left top",at:"left bottom",collision:"none",of:b})},1)}})}))})}}(jQuery);
  • ultimate-widgets-light/trunk/assets/admin/redux-core/inc/fields/link_color/field_link_color.php

    r1431909 r1508054  
    163163                        } else {
    164164                            if ( count( $this->field['output'] ) == 1 ) {
    165                                 if (strpos($this->field['output'][0], ',') != false) {
    166                                     $selector_arr = explode(',',$this->field['output'][0]);
     165                                foreach($this->field['output'] as $sel => $elem) {
     166                                    continue;
     167                                }
     168                               
     169                                if (strpos($elem, ',') != false) {
     170                                    $selector_arr = explode(',',$elem);
    167171                                    $sel_list = '';
    168172                                   
     
    174178                                    $styleString .= $sel_list . "{" . $value . '}';
    175179                                } else {
    176                                     $styleString .= $this->field['output'][0] . ":" . $key . "{" . $value . '}';
     180                                    $styleString .= $elem . ":" . $key . "{" . $value . '}';
    177181                                }
    178182                            } else {
  • ultimate-widgets-light/trunk/functions.php

    r1501294 r1508054  
    1010 * Text Domain: kho
    1111 * Domain Path: /languages/
    12  * Version:     1.5.9.1
     12 * Version:     1.5.9.2
    1313 *
    1414 * @fs_premium_only /premium/
     
    6161define( 'UWL_PLUGIN', __FILE__ );
    6262define( 'UWL_PLUGIN_DIR', untrailingslashit( dirname( UWL_PLUGIN ) ) );
    63 define( 'UWL_VERSION', '1.5.9.1' );
     63define( 'UWL_VERSION', '1.5.9.2' );
    6464function uwl_plugin_url( $path = '' )
    6565{
  • ultimate-widgets-light/trunk/readme.txt

    r1504416 r1508054  
    55Requires at least: 4.1
    66Tested up to: 4.6.1
    7 Stable tag: 1.5.9.1
     7Stable tag: 1.5.9.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    111111== Changelog ==
    112112
     113= 1.5.9.2 =
     114
     115* Redux Framework updated.
     116
    113117= 1.5.9.1 =
    114118
Note: See TracChangeset for help on using the changeset viewer.