Plugin Directory

Changeset 2085576


Ignore:
Timestamp:
05/10/2019 07:14:22 PM (7 years ago)
Author:
dwayneparton
Message:

Remove row span from ie

Location:
gecko-grid-layout/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gecko-grid-layout/trunk/gecko-grid-layout.php

    r2085574 r2085576  
    44 * Plugin URI:  https://github.com/gecko-designs/gecko-grid-layout
    55 * Description: Grid Layout block uses CSS grid to create grid layouts in gutenberg.
    6  * Version: 1.2.1
     6 * Version: 1.2.2
    77 * Author: Gecko Designs
    88 * Author URI: https://geckodesigns.com
     
    127127        $styles['--grid-row-end'] = ($atts['h'])?'span '.$atts['h']:false;
    128128        $styles['-ms-grid-column-span'] = ($atts['w'])? $atts['w']:false;
    129         $styles['-ms-grid-row-span'] = ($atts['h'])? $atts['h']:false;
     129        // $styles['-ms-grid-row-span'] = ($atts['h'])? $atts['h']:false;
    130130        $styles['min-height'] = ($atts['minHeight'])?$atts['minHeight'].'px':false;
    131131        // Add a filter to hook into the inine styles $args = ($styles, $atts)
     
    189189        $styles['grid-row-end'] = ($atts['h'])?'span '.$atts['h']:false;
    190190        $styles['-ms-grid-column-span'] = ($atts['w'])? $atts['w']:false;
    191         $styles['-ms-grid-row-span'] = ($atts['h'])? $atts['h']:false;
     191        // $styles['-ms-grid-row-span'] = ($atts['h'])? $atts['h']:false;
    192192        // Add a filter to hook into the inine styles $args = ($styles, $atts)
    193193        $styles = apply_filters( 'gecko/grid-layout-basic/style', $styles, $attributes );
  • gecko-grid-layout/trunk/readme.txt

    r2085574 r2085576  
    55Requires at least: 5.0
    66Tested up to: 5.1
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    3636
    3737== Changelog ==
     38= 1.2.2 =
     39* Removed Grid row span for ie
    3840= 1.2.1 =
    3941* Include Polyfill
     
    9799
    98100== Upgrade Notice ==
     101= 1.2.2 =
     102* Removed Grid row span for ie
    99103= 1.2.1 =
    100104* Include Polyfill
Note: See TracChangeset for help on using the changeset viewer.