Changeset 2085576
- Timestamp:
- 05/10/2019 07:14:22 PM (7 years ago)
- Location:
- gecko-grid-layout/trunk
- Files:
-
- 2 edited
-
gecko-grid-layout.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gecko-grid-layout/trunk/gecko-grid-layout.php
r2085574 r2085576 4 4 * Plugin URI: https://github.com/gecko-designs/gecko-grid-layout 5 5 * Description: Grid Layout block uses CSS grid to create grid layouts in gutenberg. 6 * Version: 1.2. 16 * Version: 1.2.2 7 7 * Author: Gecko Designs 8 8 * Author URI: https://geckodesigns.com … … 127 127 $styles['--grid-row-end'] = ($atts['h'])?'span '.$atts['h']:false; 128 128 $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; 130 130 $styles['min-height'] = ($atts['minHeight'])?$atts['minHeight'].'px':false; 131 131 // Add a filter to hook into the inine styles $args = ($styles, $atts) … … 189 189 $styles['grid-row-end'] = ($atts['h'])?'span '.$atts['h']:false; 190 190 $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; 192 192 // Add a filter to hook into the inine styles $args = ($styles, $atts) 193 193 $styles = apply_filters( 'gecko/grid-layout-basic/style', $styles, $attributes ); -
gecko-grid-layout/trunk/readme.txt
r2085574 r2085576 5 5 Requires at least: 5.0 6 6 Tested up to: 5.1 7 Stable tag: 1.2. 17 Stable tag: 1.2.2 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 36 36 37 37 == Changelog == 38 = 1.2.2 = 39 * Removed Grid row span for ie 38 40 = 1.2.1 = 39 41 * Include Polyfill … … 97 99 98 100 == Upgrade Notice == 101 = 1.2.2 = 102 * Removed Grid row span for ie 99 103 = 1.2.1 = 100 104 * Include Polyfill
Note: See TracChangeset
for help on using the changeset viewer.