Changeset 141218
- Timestamp:
- 01/03/2021 07:28:31 PM (5 years ago)
- Location:
- bravada/1.0.2.2
- Files:
-
- 4 edited
- 1 copied
-
. (copied) (copied from bravada/1.0.2.1)
-
functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
resources/js/frontend.js (modified) (3 diffs)
-
style.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bravada/1.0.2.2/functions.php
r141216 r141218 11 11 // theme identification and options management - do NOT edit unless you know what you are doing 12 12 define ( "_CRYOUT_THEME_NAME", "bravada" ); 13 define ( "_CRYOUT_THEME_VERSION", "1.0.2. 1" );13 define ( "_CRYOUT_THEME_VERSION", "1.0.2.2" ); 14 14 15 15 // prefixes for theme options and functions -
bravada/1.0.2.2/readme.txt
r141216 r141218 4 4 Requires at least: 4.5 5 5 Tested up to: 5.6.0 6 Stable tag: 1.0.2. 16 Stable tag: 1.0.2.2 7 7 Requires PHP: 5.6 8 8 License: GPLv3 … … 91 91 == Changelog == 92 92 93 = 1.0.2.2 = 94 *Release date: 2021.01.03* 95 96 * Improved preloader handling 97 93 98 = 1.0.2.1 = 94 99 *Release date: 2021.01.03* -
bravada/1.0.2.2/resources/js/frontend.js
r141216 r141218 4 4 * @package Bravada 5 5 */ 6 7 /* Remove preloader backup animation */8 if ( jQuery( '.cryout-preloader' ).length ) jQuery( '.cryout-preloader' ).css( 'animation', 'none' );9 6 10 7 jQuery( document ).ready( function() { … … 87 84 if ( ! jQuery( '.cryout-preloader' ).length ) return; 88 85 86 /* Remove preloader backup animation */ 87 if ( jQuery( '.cryout-preloader' ).length ) jQuery( '.cryout-preloader' ).css( 'animation', 'none' ); 88 89 89 jQuery( '.cryout-preloader' ).fadeOut( 700, function() { 90 90 jQuery( this ).remove(); … … 149 149 titleContainer = 'body.bravada-animated-title ' + titleContainer; 150 150 animatedTitle = 'body.bravada-animated-title ' + animatedTitle; 151 151 152 152 /* If title not present on page - exit */ 153 153 if( ! jQuery( animatedTitle ).length ) return; -
bravada/1.0.2.2/style.css
r141216 r141218 5 5 Author: Cryout Creations 6 6 Author URI: http://www.cryoutcreations.eu 7 Version: 1.0.2. 17 Version: 1.0.2.2 8 8 Tested up to: 5.6.0 9 9 Requires PHP: 5.6 … … 8516 8516 margin: auto; 8517 8517 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; 8520 8520 } 8521 8521
Note: See TracChangeset
for help on using the changeset viewer.