Make WordPress Themes

Changeset 145389


Ignore:
Timestamp:
03/29/2021 06:11:13 PM (5 years ago)
Author:
themedropbox
Message:

New version of Fluida - 1.8.6.2

Location:
fluida/1.8.6.2
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • fluida/1.8.6.2/functions.php

    r145388 r145389  
    1111// theme identification and options management - do NOT edit unless you know what you are doing
    1212define ( "_CRYOUT_THEME_NAME", "fluida" );
    13 define ( "_CRYOUT_THEME_VERSION", "1.8.6.1" );
     13define ( "_CRYOUT_THEME_VERSION", "1.8.6.2" );
    1414
    1515// prefixes for theme options and functions
  • fluida/1.8.6.2/readme.txt

    r145388 r145389  
    44Requires at least: 4.5
    55Tested up to: 5.7
    6 Stable tag: 1.8.6.1
     6Stable tag: 1.8.6.2
    77Requires PHP: 5.6
    88License: GPLv3
     
    8787== Changelog ==
    8888
     89= 1.8.6.2 =
     90*Release date - 29.03.2021*
     91
     92* Fixed landing page animated featured boxes missing the overlay effect since 1.8.6
     93
    8994= 1.8.6.1 =
    90 *Release date - 30.03.2021*
     95*Release date - 29.03.2021*
    9196
    9297* Added workaround for incorrect alignment on centered block butons with WordPress 5.7
  • fluida/1.8.6.2/resources/js/frontend.js

    r145388 r145389  
    325325
    326326    $el.on( 'mouseenter', function() {
    327         $this.removeClass( 'in-direction-left in-direction-right in-direction-up in-direction-down' +
     327        jQuery( this ).removeClass( 'in-direction-left in-direction-right in-direction-up in-direction-down' +
    328328            ' out-direction-left out-direction-right out-direction-up out-direction-down' );
    329         $this.addClass( 'in-' + $output );
     329        jQuery( this ).addClass( 'in-' + $output );
    330330        return;
    331331    } );
    332332
    333333    $el.on( 'mouseleave', function() {
    334         $this.removeClass( 'in-direction-left in-direction-right in-direction-up in-direction-down ' +
     334        jQuery( this ).removeClass( 'in-direction-left in-direction-right in-direction-up in-direction-down ' +
    335335            ' out-direction-left out-direction-right out-direction-up out-direction-down' );
    336         $this.addClass( 'out-' + $output );
     336        jQuery( this ).addClass( 'out-' + $output );
    337337        return;
    338338    } );
  • fluida/1.8.6.2/style.css

    r145388 r145389  
    55Author: Cryout Creations
    66Author URI: http://www.cryoutcreations.eu
    7 Version: 1.8.6.1
     7Version: 1.8.6.2
    88Requires at least: 4.5
    99Tested up to: 5.7
Note: See TracChangeset for help on using the changeset viewer.