Changeset 1936817
- Timestamp:
- 09/06/2018 11:26:22 AM (7 years ago)
- Location:
- mapple
- Files:
-
- 4 edited
- 18 copied
-
tags/1.4.1 (copied) (copied from mapple/trunk)
-
tags/1.4.1/README.md (copied) (copied from mapple/trunk/README.md)
-
tags/1.4.1/admin/class-mapple-admin.php (copied) (copied from mapple/trunk/admin/class-mapple-admin.php)
-
tags/1.4.1/admin/partials/mapple-admin-field-textarea.php (copied) (copied from mapple/trunk/admin/partials/mapple-admin-field-textarea.php)
-
tags/1.4.1/admin/partials/mapple-admin-page-settings.php (copied) (copied from mapple/trunk/admin/partials/mapple-admin-page-settings.php)
-
tags/1.4.1/admin/partials/mapple-admin-settings-section-api.php (copied) (copied from mapple/trunk/admin/partials/mapple-admin-settings-section-api.php)
-
tags/1.4.1/includes/class-mapple-shared.php (copied) (copied from mapple/trunk/includes/class-mapple-shared.php)
-
tags/1.4.1/includes/class-mapple.php (copied) (copied from mapple/trunk/includes/class-mapple.php)
-
tags/1.4.1/mapple.php (copied) (copied from mapple/trunk/mapple.php) (2 diffs)
-
tags/1.4.1/public/class-mapple-public.php (copied) (copied from mapple/trunk/public/class-mapple-public.php)
-
tags/1.4.1/public/class-mapple-template-functions.php (copied) (copied from mapple/trunk/public/class-mapple-template-functions.php)
-
tags/1.4.1/public/css/mapple-public.css (copied) (copied from mapple/trunk/public/css/mapple-public.css) (1 diff)
-
tags/1.4.1/public/js/mapple-public.js (copied) (copied from mapple/trunk/public/js/mapple-public.js) (2 diffs)
-
tags/1.4.1/public/templates/mapple-client-content.php (copied) (copied from mapple/trunk/public/templates/mapple-client-content.php)
-
tags/1.4.1/public/templates/mapple-client-search.php (copied) (copied from mapple/trunk/public/templates/mapple-client-search.php)
-
tags/1.4.1/public/templates/mapple-client-table-start.php (copied) (copied from mapple/trunk/public/templates/mapple-client-table-start.php)
-
tags/1.4.1/public/templates/mapple-loop-clients.php (copied) (copied from mapple/trunk/public/templates/mapple-loop-clients.php)
-
tags/1.4.1/readme.txt (copied) (copied from mapple/trunk/readme.txt) (1 diff)
-
trunk/mapple.php (modified) (2 diffs)
-
trunk/public/css/mapple-public.css (modified) (1 diff)
-
trunk/public/js/mapple-public.js (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mapple/tags/1.4.1/mapple.php
r1936759 r1936817 17 17 * Plugin URI: https://andrekelling.de/ 18 18 * 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. 019 * Version: 1.4.1 20 20 * Author: André Kelling 21 21 * Author URI: https://andrekelling.de/about … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'MAPPLE_VERSION', '1.4. 0' );38 define( 'MAPPLE_VERSION', '1.4.1' ); 39 39 40 40 /** -
mapple/tags/1.4.1/public/css/mapple-public.css
r1933348 r1936817 109 109 } 110 110 111 .mapple__sort--address {112 min-width: 248px;113 }114 115 111 /* Search and Filter table */ 116 112 -
mapple/tags/1.4.1/public/js/mapple-public.js
r1936759 r1936817 15 15 16 16 plugin.init = function() { 17 plugin.prepareTableRows();18 19 17 document.querySelectorAll('[data-mapple]').forEach(function (el) { 20 18 plugin[el.dataset.mapple](el); … … 127 125 const rows = tbody.getElementsByTagName('tr'); 128 126 const sortButtons = el.querySelectorAll('[data-mapple-sort]'); 127 128 plugin.prepareTableRows(); 129 129 130 130 sortButtons.forEach(function (el) { -
mapple/tags/1.4.1/readme.txt
r1936759 r1936817 59 59 == Changelog == 60 60 61 = 1.4.1 = 62 * fix JS error appearing on pages without mapple_clients table output 63 61 64 = 1.4.0 = 62 65 * enable google maps style customisation -
mapple/trunk/mapple.php
r1936759 r1936817 17 17 * Plugin URI: https://andrekelling.de/ 18 18 * 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. 019 * Version: 1.4.1 20 20 * Author: André Kelling 21 21 * Author URI: https://andrekelling.de/about … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'MAPPLE_VERSION', '1.4. 0' );38 define( 'MAPPLE_VERSION', '1.4.1' ); 39 39 40 40 /** -
mapple/trunk/public/css/mapple-public.css
r1933348 r1936817 109 109 } 110 110 111 .mapple__sort--address {112 min-width: 248px;113 }114 115 111 /* Search and Filter table */ 116 112 -
mapple/trunk/public/js/mapple-public.js
r1936759 r1936817 15 15 16 16 plugin.init = function() { 17 plugin.prepareTableRows();18 19 17 document.querySelectorAll('[data-mapple]').forEach(function (el) { 20 18 plugin[el.dataset.mapple](el); … … 127 125 const rows = tbody.getElementsByTagName('tr'); 128 126 const sortButtons = el.querySelectorAll('[data-mapple-sort]'); 127 128 plugin.prepareTableRows(); 129 129 130 130 sortButtons.forEach(function (el) { -
mapple/trunk/readme.txt
r1936759 r1936817 59 59 == Changelog == 60 60 61 = 1.4.1 = 62 * fix JS error appearing on pages without mapple_clients table output 63 61 64 = 1.4.0 = 62 65 * enable google maps style customisation
Note: See TracChangeset
for help on using the changeset viewer.