Plugin Directory

Changeset 2072346


Ignore:
Timestamp:
04/22/2019 06:51:00 AM (7 years ago)
Author:
mojofywp
Message:

fixed unclickable link in chrome v73

Location:
woorousell/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • woorousell/trunk/README.txt

    r2041903 r2072346  
    11=== Product Carousel For WooCommerce - WoorouSell ===
    22
    3 Contributors: mojofywp
     3Contributors: mojofywp, freemius
    44Requires at least: 4.9.8
    55Requires PHP: 5.6
  • woorousell/trunk/assets/js/plugin.js

    r1968128 r2072346  
    7575            adaptiveHeight: ( container.attr("data-adaptiveheight") !== undefined && container.attr("data-adaptiveheight") === "true" ? true : false ), // only for vertical mode
    7676            adaptiveHeightSpeed: ( container.attr("data-adaptiveheightspeed") !== undefined ? parseInt( container.attr("data-adaptiveheightspeed") ) : 500 ), // only for vertical mode
    77             touchEnabled: ( container.attr("data-touchenabled") !== undefined && container.attr("data-touchenabled") === "true" ? true : false ),
     77            //touchEnabled: ( container.attr("data-touchenabled") !== undefined && container.attr("data-touchenabled") === "true" ? true : false ),
     78            touchEnabled: false,
    7879            swipeThreshold: ( container.attr("data-swipethreshold") !== undefined ? parseInt( container.attr("data-swipethreshold") ) : 50 ),
    7980            auto: ( container.attr("data-auto") !== undefined && container.attr("data-auto") === "true" ? true : false ),
  • woorousell/trunk/builder/settings-page/views/form.php

    r1968239 r2072346  
    652652            </div><!-- .wrslb-form-control -->
    653653        </li>
    654         <li>
     654        <li style="display: none;">
    655655            <div class="wrslb-form-control wrslb-input-type-optselector">
    656656                <label class="wrslb-input-label" for=<?php
  • woorousell/trunk/functions.php

    r2041903 r2072346  
    11<?php /*
    22Plugin Name: WoorouSell - Product Carousel For WooCommerce
    3 Version: 1.0.1
     3Version: 1.0.2
    44Plugin URI: https://www.mojofywp.com/woorousell
    55Description: Showcase your woocommerce products in a beautiful and responsive carousel format
     
    1010Requires at least: 4.9.8
    1111Tested up to: 5.0.0
    12 Stable tag: 1.0.1
     12Stable tag: 1.0.2
    1313
    1414Text Domain: woorousell
     
    4343 * Plugin version
    4444 **/
    45 if(!defined('WRSL_VERSION')) define( 'WRSL_VERSION', '1.0.1' );
     45if(!defined('WRSL_VERSION')) define( 'WRSL_VERSION', '1.0.2' );
    4646
    4747/**
  • woorousell/trunk/package.json

    r2041903 r2072346  
    11{
    22  "name": "woorousell",
    3   "version": "1.0.1",
     3  "version": "1.0.2",
    44  "scripts": {
    55    "start": "cross-env webpack --watch",
Note: See TracChangeset for help on using the changeset viewer.