Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontblocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: FrontBlocks
* Plugin URI: https://github.com/closemarketing/frontblocks
* Description: Blocks and helpers to facilitate GeneratePress frontend developing.
* Version: 0.2.2
* Version: 0.2.3
* Author: Closemarketing
* Author URI: https://close.marketing
* Text Domain: frontblocks
Expand All @@ -27,7 +27,7 @@

defined( 'ABSPATH' ) || die( 'No script kiddies please!' );

define( 'FRBL_VERSION', '0.2.2' );
define( 'FRBL_VERSION', '0.2.3' );
define( 'FRBL_PLUGIN', __FILE__ );
define( 'FRBL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'FRBL_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion includes/carousel/frontblocks-carousel.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ window.addEventListener('load', function (event) {
type: carouselType,
perView: carouselView,
startAt: 0,
autoplay: 2000,
autoplay: carouselAutoplay === 0 ? 2500 : carouselAutoplay,
gap: 0,
breakpoints: {
430: {
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Custom enhacements for front developing.

== Description ==

Plugin to create custom blocks for the front of the website. It includes a carousel/slider block and an animation block.
To start using the Carousel, add the frontblocks-carousel class to the element and then, include any of the following attributes:

Data Attributes for Carrousel:
- data-type: slider, carousel
Expand Down Expand Up @@ -86,6 +86,9 @@ WordPress installation and then activate the Plugin from Plugins page.
[Official Repository Github](https://github.com/closemarketing/frontblocks)

== Changelog ==
= 0.2.3 =
* Updated Glide autoplay value assignation.

= 0.2.2 =
* Updated images.

Expand Down
Loading