Changeset 1677967
- Timestamp:
- 06/14/2017 01:34:52 AM (9 years ago)
- Location:
- navmenu-addon-for-elementor
- Files:
-
- 34 added
- 6 edited
-
tags/1.0.5 (added)
-
tags/1.0.5/LICENSE (added)
-
tags/1.0.5/assets (added)
-
tags/1.0.5/assets/css (added)
-
tags/1.0.5/assets/css/editor.css (added)
-
tags/1.0.5/assets/css/editor.min.css (added)
-
tags/1.0.5/assets/css/frontend.css (added)
-
tags/1.0.5/assets/css/frontend.min.css (added)
-
tags/1.0.5/assets/js (added)
-
tags/1.0.5/assets/js/editor.js (added)
-
tags/1.0.5/assets/js/editor.min.js (added)
-
tags/1.0.5/assets/js/frontend.js (added)
-
tags/1.0.5/assets/js/frontend.min.js (added)
-
tags/1.0.5/assets/js/modernizr.custom.js (added)
-
tags/1.0.5/base (added)
-
tags/1.0.5/base/module-base.php (added)
-
tags/1.0.5/classes (added)
-
tags/1.0.5/classes/utils.php (added)
-
tags/1.0.5/elementor-navmenu.php (added)
-
tags/1.0.5/includes (added)
-
tags/1.0.5/includes/modules-manager.php (added)
-
tags/1.0.5/index.php (added)
-
tags/1.0.5/modules (added)
-
tags/1.0.5/modules/menus (added)
-
tags/1.0.5/modules/menus/module.info.php (added)
-
tags/1.0.5/modules/menus/module.php (added)
-
tags/1.0.5/modules/menus/widgets (added)
-
tags/1.0.5/modules/menus/widgets/default-navmenu.php (added)
-
tags/1.0.5/modules/menus/widgets/elementor-branding.php (added)
-
tags/1.0.5/modules/menus/widgets/elementor-search.php (added)
-
tags/1.0.5/modules/menus/widgets/mega-menu.php (added)
-
tags/1.0.5/modules/menus/widgets/navmenu-overlay.php (added)
-
tags/1.0.5/plugin.php (added)
-
tags/1.0.5/readme.txt (added)
-
trunk/elementor-navmenu.php (modified) (3 diffs)
-
trunk/modules/menus/widgets/default-navmenu.php (modified) (1 diff)
-
trunk/modules/menus/widgets/mega-menu.php (modified) (1 diff)
-
trunk/modules/menus/widgets/navmenu-overlay.php (modified) (1 diff)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
navmenu-addon-for-elementor/trunk/elementor-navmenu.php
r1630067 r1677967 5 5 * Plugin URI: https://wpdevhq.com/ 6 6 * Author: WPDevHQ 7 * Version: 1.0. 47 * Version: 1.0.5 8 8 * Author URI: https://wpdevhq.com/ 9 9 * … … 13 13 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 14 14 15 define( 'ELEMENTOR_MENUS_VERSION', '1.0. 4' );15 define( 'ELEMENTOR_MENUS_VERSION', '1.0.5' ); 16 16 17 17 define( 'ELEMENTOR_MENUS__FILE__', __FILE__ ); … … 110 110 } 111 111 112 function menus_navbar_menu_choices() {112 function navmenu_navbar_menu_choices() { 113 113 $menus = wp_get_nav_menus(); 114 114 $items = array(); -
navmenu-addon-for-elementor/trunk/modules/menus/widgets/default-navmenu.php
r1630067 r1677967 51 51 'label' => __( 'Select Menu', 'elementor-navmenu' ), 52 52 'type' => Controls_Manager::SELECT, 53 'options' => menus_navbar_menu_choices(),53 'options' => navmenu_navbar_menu_choices(), 54 54 'default' => '', 55 55 ] -
navmenu-addon-for-elementor/trunk/modules/menus/widgets/mega-menu.php
r1614809 r1677967 50 50 'label' => __( 'Select Menu', 'elementor-navmenu' ), 51 51 'type' => Controls_Manager::SELECT, 52 'options' => menus_navbar_menu_choices(),52 'options' => navmenu_navbar_menu_choices(), 53 53 'default' => '', 54 54 ] -
navmenu-addon-for-elementor/trunk/modules/menus/widgets/navmenu-overlay.php
r1614809 r1677967 50 50 'label' => __( 'Select Menu', 'elementor-navmenu' ), 51 51 'type' => Controls_Manager::SELECT, 52 'options' => menus_navbar_menu_choices(),52 'options' => navmenu_navbar_menu_choices(), 53 53 'default' => '', 54 54 ] -
navmenu-addon-for-elementor/trunk/plugin.php
r1614809 r1677967 45 45 public function __clone() { 46 46 // Cloning instances of the class is forbidden 47 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'elementor-menus' ), '1.0. 0' );47 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'elementor-menus' ), '1.0.5' ); 48 48 } 49 49 … … 56 56 public function __wakeup() { 57 57 // Unserializing instances of the class is forbidden 58 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'elementor-menus' ), '1.0. 0' );58 _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'elementor-menus' ), '1.0.5' ); 59 59 } 60 60 -
navmenu-addon-for-elementor/trunk/readme.txt
r1630067 r1677967 4 4 Tags: elementor, pagebuilder, page builder, page builder menu, page builder navmenu, menu builder, builder navigation menus, navigation, menus, navmenu, nav menu 5 5 Requires at least: 4.4 6 Tested up to: 4. 7.37 Stable tag: 1.0. 46 Tested up to: 4.8.0 7 Stable tag: 1.0.5 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 55 55 56 56 == Changelog == 57 = 1.0.5 = 58 * FIXED: Fatal error when active theme is Element Theme! 59 57 60 = 1.0.4 = 58 61 * NEW: Added options for alignment and padding for submenu items
Note: See TracChangeset
for help on using the changeset viewer.