Plugin Directory

Changeset 1727798


Ignore:
Timestamp:
09/10/2017 09:30:16 PM (9 years ago)
Author:
WPDevHQ
Message:

Fixing minor issues

Location:
navmenu-addon-for-elementor
Files:
54 added
8 edited

Legend:

Unmodified
Added
Removed
  • navmenu-addon-for-elementor/trunk/assets/js/frontend.min.js

    r1614809 r1727798  
    344344
    345345    function cbpHorizontalSlideOutMenu( el, options ) {
     346        var el;
    346347        this.el = el;
    347348        this.options = extend( this.defaults, options );
     
    353354        defaults : {},
    354355        _init : function() {
    355            
     356            var el;
    356357            this.current = -1;
    357358            this.touch = Modernizr.touch;
  • navmenu-addon-for-elementor/trunk/elementor-navmenu.php

    r1679952 r1727798  
    55 * Plugin URI: https://wpdevhq.com/
    66 * Author: WPDevHQ
    7  * Version: 1.0.6
     7 * Version: 1.0.7
    88 * Author URI: https://wpdevhq.com/
    99 *
  • navmenu-addon-for-elementor/trunk/includes/modules-manager.php

    r1610535 r1727798  
    2828    public function __construct() {
    2929        $modules = [
     30            'branding',
    3031            'menus',
     32            'search',
    3133        ];
    3234
  • navmenu-addon-for-elementor/trunk/modules/menus/module.php

    r1614809 r1727798  
    1919    public function get_widgets() {
    2020        return [
    21             'Elementor_Branding',
    2221            'Default_Navmenu',
    2322            'Navmenu_Overlay',
    24             'Mega_Menu',
    25             'Elementor_Search',         
     23            'Mega_Menu',           
    2624        ];
    2725    }
  • navmenu-addon-for-elementor/trunk/modules/menus/widgets/default-navmenu.php

    r1677967 r1727798  
    1414 * Elementor Elementor Navbar
    1515 *
    16  * Elementor widget for hello world.
     16 * Elementor widget for Default Navmenu.
    1717 *
    1818 * @since 1.0.0
     
    2020class Default_Navmenu extends Widget_Base {
    2121   
     22    protected $_has_template_content = false;
     23   
    2224    public function get_name() {
    2325        return 'default-navmenu';
     
    2931
    3032    public function get_icon() {
    31         return 'eicon-menu';
     33        return 'eicon-nav-menu';
    3234    }
    3335
  • navmenu-addon-for-elementor/trunk/modules/menus/widgets/mega-menu.php

    r1677967 r1727798  
    2020class Mega_Menu extends Widget_Base {
    2121   
     22    protected $_has_template_content = false;
     23   
    2224    public function get_name() {
    2325        return 'mega-menu';
     
    2931
    3032    public function get_icon() {
    31         return 'eicon-menu';
     33        return 'eicon-nav-menu';
    3234    }
    3335
  • navmenu-addon-for-elementor/trunk/modules/menus/widgets/navmenu-overlay.php

    r1677967 r1727798  
    2020class Navmenu_Overlay extends Widget_Base {
    2121   
     22    protected $_has_template_content = false;
     23   
    2224    public function get_name() {
    2325        return 'navmenu-overlay';
     
    2931
    3032    public function get_icon() {
    31         return 'eicon-menu';
     33        return 'eicon-nav-menu';
    3234    }
    3335
  • navmenu-addon-for-elementor/trunk/readme.txt

    r1679952 r1727798  
    44Tags: elementor, pagebuilder, page builder, page builder menu, page builder navmenu, menu builder, builder navigation menus, navigation, menus, navmenu, nav menu 
    55Requires at least: 4.4 
    6 Tested up to: 4.8.0 
    7 Stable tag: 1.0.6 
     6Tested up to: 4.8.1 
     7Stable tag: 1.0.7 
    88License: GPLv3 
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html   
     
    5555
    5656== Changelog ==
     57= 1.0.7 =
     58* FIXED: Missing widget icon due to updated icons in Elementor   
     59* FIXED: Disbaled the _content_template() functions as they are not in use.   
     60* TWEAK: Moved Branding and Search widgets into their own modules for future enhancements
     61
    5762= 1.0.6 =
    5863* FIXED: Bug on the new UI column selectors in Elementor V1.5.0 - removed the z-index hack as this will now be taken care of by core!
Note: See TracChangeset for help on using the changeset viewer.