Make WordPress Themes

Changeset 141218


Ignore:
Timestamp:
01/03/2021 07:28:31 PM (5 years ago)
Author:
themedropbox
Message:

New version of Bravada - 1.0.2.2

Location:
bravada/1.0.2.2
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • bravada/1.0.2.2/functions.php

    r141216 r141218  
    1111// theme identification and options management - do NOT edit unless you know what you are doing
    1212define ( "_CRYOUT_THEME_NAME", "bravada" );
    13 define ( "_CRYOUT_THEME_VERSION", "1.0.2.1" );
     13define ( "_CRYOUT_THEME_VERSION", "1.0.2.2" );
    1414
    1515// prefixes for theme options and functions
  • bravada/1.0.2.2/readme.txt

    r141216 r141218  
    44Requires at least: 4.5
    55Tested up to: 5.6.0
    6 Stable tag: 1.0.2.1
     6Stable tag: 1.0.2.2
    77Requires PHP: 5.6
    88License: GPLv3
     
    9191== Changelog ==
    9292
     93= 1.0.2.2 =
     94*Release date: 2021.01.03*
     95
     96* Improved preloader handling
     97
    9398= 1.0.2.1 =
    9499*Release date: 2021.01.03*
  • bravada/1.0.2.2/resources/js/frontend.js

    r141216 r141218  
    44 * @package Bravada
    55 */
    6 
    7  /* Remove preloader backup animation */
    8  if ( jQuery( '.cryout-preloader' ).length ) jQuery( '.cryout-preloader' ).css( 'animation', 'none' );
    96
    107jQuery( document ).ready( function() {
     
    8784    if ( ! jQuery( '.cryout-preloader' ).length ) return;
    8885
     86    /* Remove preloader backup animation */
     87    if ( jQuery( '.cryout-preloader' ).length ) jQuery( '.cryout-preloader' ).css( 'animation', 'none' );
     88
    8989    jQuery( '.cryout-preloader' ).fadeOut( 700, function() {
    9090        jQuery( this ).remove();
     
    149149    titleContainer = 'body.bravada-animated-title ' + titleContainer;
    150150    animatedTitle = 'body.bravada-animated-title ' + animatedTitle;
    151    
     151
    152152    /* If title not present on page - exit */
    153153    if( ! jQuery( animatedTitle ).length ) return;
  • bravada/1.0.2.2/style.css

    r141216 r141218  
    55Author: Cryout Creations
    66Author URI: http://www.cryoutcreations.eu
    7 Version: 1.0.2.1
     7Version: 1.0.2.2
    88Tested up to: 5.6.0
    99Requires PHP: 5.6
     
    85168516    margin: auto;
    85178517    background: #FFF;
    8518     -webkit-animation: preloader-hide 2s 1s ease-out forwards;
    8519     animation: preloader-hide 2s 1s ease-out forwards;
     8518    -webkit-animation: preloader-hide 4s 1s ease-out forwards;
     8519    animation: preloader-hide 4s 1s ease-out forwards;
    85208520}
    85218521
Note: See TracChangeset for help on using the changeset viewer.