Changeset 2907970
- Timestamp:
- 05/04/2023 12:09:04 PM (3 years ago)
- Location:
- responsive-table-for-divi/trunk
- Files:
-
- 1 added
- 2 edited
-
assets/datatable/js/natural.js (added)
-
readme.txt (modified) (2 diffs)
-
rtfd_responsive_table_for_divi.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
responsive-table-for-divi/trunk/readme.txt
r2907956 r2907970 6 6 Tested up to: 6.2.0 7 7 Requires PHP: 8.0 8 Stable tag: 1.0. 38 Stable tag: 1.0.4 9 9 License: GPL2 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 87 87 * Tested up to PHP-Version 8.2 88 88 89 = 1.0.4 = 90 * Minor bug fixes 91 89 92 == Upgrade Notice == 90 93 = 1.0.3 = 91 There is no upgrade notice. 94 IMPORTANT: Check if Plugin is still active after updating! -
responsive-table-for-divi/trunk/rtfd_responsive_table_for_divi.php
r2907954 r2907970 4 4 * Plugin URI:https://www.sutersoftware.ch/responsive-table-for-divi/ 5 5 * Description:This plugin adds a Divi module that makes it easy for you to turn any HTML table into a responsive DataTable. And that in under 2 minutes. 6 * Version:1.0. 36 * Version:1.0.4 7 7 * Author:Suter Software 8 8 * Author URI:https://www.sutersoftware.ch/ … … 21 21 function ss_datatable_assets_register_scripts_and_styles(){ 22 22 if ( ! wp_script_is('jquery.dataTables.min.css', 'enqueued')){ 23 wp_enqueue_style('ss-asset-css-0', plugins_url( '/assets/datatable/css/jquery.dataTables.min.css', __FILE__ ), array(), '1.1 2.1'); // Version 1.12.123 wp_enqueue_style('ss-asset-css-0', plugins_url( '/assets/datatable/css/jquery.dataTables.min.css', __FILE__ ), array(), '1.13.4'); 24 24 } 25 25 if ( ! wp_script_is('rowReorder.dataTables.min.css', 'enqueued')){ 26 wp_enqueue_style('ss-asset-css-1', plugins_url( '/assets/datatable/css/rowReorder.dataTables.min.css', __FILE__ ), array(), '1. 2.8'); // Version 1.2.826 wp_enqueue_style('ss-asset-css-1', plugins_url( '/assets/datatable/css/rowReorder.dataTables.min.css', __FILE__ ), array(), '1.3.3'); 27 27 } 28 28 if ( ! wp_script_is('responsive.dataTables.min.css', 'enqueued')){ 29 wp_enqueue_style('ss-asset-css-2', plugins_url( '/assets/datatable/css/responsive.dataTables.min.css', __FILE__ ), array(), '2. 3.0'); // Version 2.3.029 wp_enqueue_style('ss-asset-css-2', plugins_url( '/assets/datatable/css/responsive.dataTables.min.css', __FILE__ ), array(), '2.4.1'); 30 30 } 31 31 if ( ! wp_script_is('jquery.dataTables.min.js', 'enqueued')){ 32 wp_enqueue_script('ss-asset-js-0', plugins_url( '/assets/datatable/js/jquery.dataTables.min.js', __FILE__ ), array('jquery'), '1.1 2.1', true); // Version 1.12.132 wp_enqueue_script('ss-asset-js-0', plugins_url( '/assets/datatable/js/jquery.dataTables.min.js', __FILE__ ), array('jquery'), '1.13.4', true); 33 33 } 34 34 if ( ! wp_script_is('dataTables.rowReorder.min.js', 'enqueued')){ 35 wp_enqueue_script('ss-asset-js-1', plugins_url( '/assets/datatable/js/dataTables.rowReorder.min.js', __FILE__ ), array('jquery'), '1. 2.8', true); // Version 1.2.835 wp_enqueue_script('ss-asset-js-1', plugins_url( '/assets/datatable/js/dataTables.rowReorder.min.js', __FILE__ ), array('jquery'), '1.3.3', true); 36 36 } 37 37 if ( ! wp_script_is('dataTables.responsive.min.js', 'enqueued')){ 38 wp_enqueue_script('ss-asset-js-2', plugins_url( '/assets/datatable/js/dataTables.responsive.min.js', __FILE__ ), array('jquery'), '2. 3.0', true); // Version 2.3.038 wp_enqueue_script('ss-asset-js-2', plugins_url( '/assets/datatable/js/dataTables.responsive.min.js', __FILE__ ), array('jquery'), '2.4.1', true); 39 39 } 40 if ( ! wp_script_is(' dataTables.responsive.min.js', 'enqueued')){40 if ( ! wp_script_is('natural.js', 'enqueued')){ 41 41 wp_enqueue_script('ss-asset-js-3', plugins_url( '/assets/datatable/js/natural.js', __FILE__ ), array('jquery'), '2.3.0', true); // Version 0.7 SS 42 42 } … … 55 55 56 56 57 wp_register_script('dmb-module-883', plugins_url('', __FILE__).'/js/_rtfd_883.js', array('jquery'), '1.0. 2', true);57 wp_register_script('dmb-module-883', plugins_url('', __FILE__).'/js/_rtfd_883.js', array('jquery'), '1.0.3', true); 58 58 59 59 }
Note: See TracChangeset
for help on using the changeset viewer.