Plugin Directory

Changeset 3371447


Ignore:
Timestamp:
10/01/2025 11:13:11 PM (5 months ago)
Author:
rnoakes3rd
Message:

v3.2.7

Location:
noakes-menu-manager/trunk
Files:
4 added
4 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • noakes-menu-manager/trunk/assets/manifest.json

    r3261833 r3371447  
    22  "noatice.css": "noatice-9cfe489b62.css",
    33  "noatice.js": "noatice-35bd19b79b.js",
    4   "script.js": "script-b2eaa6e35e.js",
    5   "style.css": "style-993a991701.css"
     4  "script.js": "script-ec28edce84.js",
     5  "style.css": "style-807896d47e.css"
    66}
  • noakes-menu-manager/trunk/includes/static/class-constants.php

    r3261833 r3371447  
    4747     * @var string
    4848     */
    49     const VERSION = '3.2.6';
    50     const VERSION_PREVIOUS = '3.2.5';
     49    const VERSION = '3.2.7';
     50    const VERSION_PREVIOUS = '3.2.6';
    5151   
    5252    /**
  • noakes-menu-manager/trunk/includes/templates/repeatable-buttons.php

    r2810236 r3371447  
    33     * Repeatable buttons template.
    44     *
     5     * @since 3.2.7 Converted to button elements.
    56     * @since 3.0.0
    67     *
     
    1617<script id="tmpl-nmm-repeatable-buttons" type="text/html">
    1718
    18     <a class="nmm-repeatable-move" href="javascript:;" tabindex="-1" title="<?php esc_attr_e('Move Item', 'noakes-menu-manager'); ?>">
     19    <button class="nmm-repeatable-move" tabindex="-1" title="<?php esc_attr_e('Move Item', 'noakes-menu-manager'); ?>" type="button">
    1920   
    2021        <span class="nmm-repeatable-count"></span>
    21         <span class="nmm-repeatable-move-button"><span class="dashicons dashicons-move"></span></span>
     22       
     23        <span class="nmm-repeatable-move-button">
     24       
     25            <span class="dashicons dashicons-move"></span>
     26           
     27        </span>
     28       
     29    </button>
     30   
     31    <button class="nmm-repeatable-move-up" tabindex="-1" title="<?php esc_attr_e('Move Item Up', 'noakes-menu-manager'); ?>" type="button">
     32   
     33        <span class="dashicons dashicons-arrow-up-alt"></span>
     34       
     35    </button>
     36   
     37    <button class="nmm-repeatable-move-down" tabindex="-1" title="<?php esc_attr_e('Move Item Down', 'noakes-menu-manager'); ?>" type="button">
     38   
     39        <span class="dashicons dashicons-arrow-down-alt"></span>
     40       
     41    </button>
     42   
     43    <button class="nmm-repeatable-insert" tabindex="-1" title="<?php esc_attr_e('Insert Item Above', 'noakes-menu-manager'); ?>" type="button">
     44   
     45        <span class="dashicons dashicons-plus"></span>
    2246       
    2347    </a>
    2448   
    25     <a class="nmm-repeatable-move-up" href="javascript:;" tabindex="-1" title="<?php esc_attr_e('Move Item Up', 'noakes-menu-manager'); ?>"><span class="dashicons dashicons-arrow-up-alt"></span></a>
    26     <a class="nmm-repeatable-move-down" href="javascript:;" tabindex="-1" title="<?php esc_attr_e('Move Item Down', 'noakes-menu-manager'); ?>"><span class="dashicons dashicons-arrow-down-alt"></span></a>
    27     <a class="nmm-repeatable-insert" href="javascript:;" tabindex="-1" title="<?php esc_attr_e('Insert Item Above', 'noakes-menu-manager'); ?>"><span class="dashicons dashicons-plus"></span></a>
    28     <a class="nmm-repeatable-remove" href="javascript:;" tabindex="-1" title="<?php esc_attr_e('Remove Item', 'noakes-menu-manager'); ?>"><span class="dashicons dashicons-no"></span></a>
     49    <button class="nmm-repeatable-remove" tabindex="-1" title="<?php esc_attr_e('Remove Item', 'noakes-menu-manager'); ?>" type="button">
     50   
     51        <span class="dashicons dashicons-no"></span>
     52       
     53    </button>
    2954   
    3055</script>
  • noakes-menu-manager/trunk/noakes-menu-manager.php

    r3261833 r3371447  
    44 * Plugin URI:  https://wordpress.org/plugins/noakes-menu-manager/
    55 * Description: Simplifies nav menu maintenance and functionality providing more control over nav menus with less coding.
    6  * Version:     3.2.6
     6 * Version:     3.2.7
    77 * Author:      Robert Noakes
    88 * Author URI:  https://robertnoakes.com/
  • noakes-menu-manager/trunk/readme.txt

    r3261833 r3371447  
    55Requires at least: 5.0
    66Tested up to: 6.8
    7 Stable tag: 3.2.6
     7Stable tag: 3.2.7
    88Copyright: (c) 2016-2025 Robert Noakes (mr@robertnoakes.com)
    99License: GNU General Public License v3.0
     
    7575== Changelog ==
    7676
     77= 3.2.7 =
     78
     79* Fixed: Repeatable nav menus issue
     80
    7781= 3.2.6 =
    7882
Note: See TracChangeset for help on using the changeset viewer.