Plugin Directory

Changeset 1936817


Ignore:
Timestamp:
09/06/2018 11:26:22 AM (7 years ago)
Author:
andrekelling
Message:

JS fix error appearing on pages without mapple_clients table output v1.4.1

Location:
mapple
Files:
4 edited
18 copied

Legend:

Unmodified
Added
Removed
  • mapple/tags/1.4.1/mapple.php

    r1936759 r1936817  
    1717 * Plugin URI:        https://andrekelling.de/
    1818 * Description:       To show a google map with the locations of your clients. You can output additionally a sorted listing table of all your clients. Just with shortcodes.
    19  * Version:           1.4.0
     19 * Version:           1.4.1
    2020 * Author:            André Kelling
    2121 * Author URI:        https://andrekelling.de/about
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'MAPPLE_VERSION', '1.4.0' );
     38define( 'MAPPLE_VERSION', '1.4.1' );
    3939
    4040/**
  • mapple/tags/1.4.1/public/css/mapple-public.css

    r1933348 r1936817  
    109109}
    110110
    111 .mapple__sort--address {
    112     min-width: 248px;
    113 }
    114 
    115111/* Search and Filter table */
    116112
  • mapple/tags/1.4.1/public/js/mapple-public.js

    r1936759 r1936817  
    1515
    1616    plugin.init = function() {
    17         plugin.prepareTableRows();
    18 
    1917        document.querySelectorAll('[data-mapple]').forEach(function (el) {
    2018            plugin[el.dataset.mapple](el);
     
    127125        const rows = tbody.getElementsByTagName('tr');
    128126        const sortButtons = el.querySelectorAll('[data-mapple-sort]');
     127
     128        plugin.prepareTableRows();
    129129
    130130        sortButtons.forEach(function (el) {
  • mapple/tags/1.4.1/readme.txt

    r1936759 r1936817  
    5959== Changelog ==
    6060
     61= 1.4.1 =
     62* fix JS error appearing on pages without mapple_clients table output
     63
    6164= 1.4.0 =
    6265* enable google maps style customisation
  • mapple/trunk/mapple.php

    r1936759 r1936817  
    1717 * Plugin URI:        https://andrekelling.de/
    1818 * Description:       To show a google map with the locations of your clients. You can output additionally a sorted listing table of all your clients. Just with shortcodes.
    19  * Version:           1.4.0
     19 * Version:           1.4.1
    2020 * Author:            André Kelling
    2121 * Author URI:        https://andrekelling.de/about
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'MAPPLE_VERSION', '1.4.0' );
     38define( 'MAPPLE_VERSION', '1.4.1' );
    3939
    4040/**
  • mapple/trunk/public/css/mapple-public.css

    r1933348 r1936817  
    109109}
    110110
    111 .mapple__sort--address {
    112     min-width: 248px;
    113 }
    114 
    115111/* Search and Filter table */
    116112
  • mapple/trunk/public/js/mapple-public.js

    r1936759 r1936817  
    1515
    1616    plugin.init = function() {
    17         plugin.prepareTableRows();
    18 
    1917        document.querySelectorAll('[data-mapple]').forEach(function (el) {
    2018            plugin[el.dataset.mapple](el);
     
    127125        const rows = tbody.getElementsByTagName('tr');
    128126        const sortButtons = el.querySelectorAll('[data-mapple-sort]');
     127
     128        plugin.prepareTableRows();
    129129
    130130        sortButtons.forEach(function (el) {
  • mapple/trunk/readme.txt

    r1936759 r1936817  
    5959== Changelog ==
    6060
     61= 1.4.1 =
     62* fix JS error appearing on pages without mapple_clients table output
     63
    6164= 1.4.0 =
    6265* enable google maps style customisation
Note: See TracChangeset for help on using the changeset viewer.