Version Description
- Fix: jQuery v3 compatibility
- Fix: Mobile Menu not working in FireFox dev tools
- Fix: Animated toggle block vertical positioning
Download this release
Release Info
Developer | megamenu |
Plugin | Max Mega Menu |
Version | 2.5.3.1 |
Comparing to | |
See all releases |
Code changes from version 2.5.3 to 2.5.3.1
- css/toggle-blocks.scss +1 -0
- js/maxmegamenu.js +3 -3
- megamenu.php +2 -2
- readme.txt +7 -1
css/toggle-blocks.scss
CHANGED
@@ -124,6 +124,7 @@
|
|
124 |
margin: 0;
|
125 |
overflow: visible;
|
126 |
transform: scale($scale);
|
|
|
127 |
}
|
128 |
.mega-toggle-animated-box {
|
129 |
width: 40px;
|
124 |
margin: 0;
|
125 |
overflow: visible;
|
126 |
transform: scale($scale);
|
127 |
+
align-self: center;
|
128 |
}
|
129 |
.mega-toggle-animated-box {
|
130 |
width: 40px;
|
js/maxmegamenu.js
CHANGED
@@ -425,7 +425,7 @@
|
|
425 |
};
|
426 |
|
427 |
plugin.hideMobileMenu = function() {
|
428 |
-
if (
|
429 |
return;
|
430 |
}
|
431 |
|
@@ -445,7 +445,7 @@
|
|
445 |
};
|
446 |
|
447 |
plugin.showMobileMenu = function() {
|
448 |
-
if (
|
449 |
return;
|
450 |
}
|
451 |
|
@@ -489,7 +489,7 @@
|
|
489 |
plugin.hidePanel($(this).parent(), false);
|
490 |
});
|
491 |
|
492 |
-
$(window).load
|
493 |
plugin.calculateDynamicSubmenuWidths($("li.mega-menu-megamenu > a.mega-menu-link", $menu));
|
494 |
});
|
495 |
|
425 |
};
|
426 |
|
427 |
plugin.hideMobileMenu = function() {
|
428 |
+
if ( ! $toggle_bar.is(":visible")) {
|
429 |
return;
|
430 |
}
|
431 |
|
445 |
};
|
446 |
|
447 |
plugin.showMobileMenu = function() {
|
448 |
+
if ( ! $toggle_bar.is(":visible")) {
|
449 |
return;
|
450 |
}
|
451 |
|
489 |
plugin.hidePanel($(this).parent(), false);
|
490 |
});
|
491 |
|
492 |
+
$(window).on("load", function() {
|
493 |
plugin.calculateDynamicSubmenuWidths($("li.mega-menu-megamenu > a.mega-menu-link", $menu));
|
494 |
});
|
495 |
|
megamenu.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Max Mega Menu
|
5 |
* Plugin URI: https://www.megamenu.com
|
6 |
* Description: An easy to use mega menu plugin. Written the WordPress way.
|
7 |
-
* Version: 2.5.3
|
8 |
* Author: megamenu.com
|
9 |
* Author URI: https://www.megamenu.com
|
10 |
* License: GPL-2.0+
|
@@ -26,7 +26,7 @@ final class Mega_Menu {
|
|
26 |
/**
|
27 |
* @var string
|
28 |
*/
|
29 |
-
public $version = '2.5.3';
|
30 |
|
31 |
|
32 |
/**
|
4 |
* Plugin Name: Max Mega Menu
|
5 |
* Plugin URI: https://www.megamenu.com
|
6 |
* Description: An easy to use mega menu plugin. Written the WordPress way.
|
7 |
+
* Version: 2.5.3.1
|
8 |
* Author: megamenu.com
|
9 |
* Author URI: https://www.megamenu.com
|
10 |
* License: GPL-2.0+
|
26 |
/**
|
27 |
* @var string
|
28 |
*/
|
29 |
+
public $version = '2.5.3.1';
|
30 |
|
31 |
|
32 |
/**
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: megamenu
|
|
3 |
Tags: menu, megamenu, mega menu, navigation, widget, dropdown menu, drag and drop, mobile, responsive, retina, theme editor, widget, shortcode, sidebar, icons, dashicons
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 5.0
|
6 |
-
Stable tag: 2.5.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -109,6 +109,12 @@ See https://www.megamenu.com for more screenshots
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
= 2.5.3 =
|
113 |
|
114 |
* New: Animated Menu Toggle Block
|
3 |
Tags: menu, megamenu, mega menu, navigation, widget, dropdown menu, drag and drop, mobile, responsive, retina, theme editor, widget, shortcode, sidebar, icons, dashicons
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 5.0
|
6 |
+
Stable tag: 2.5.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
= 2.5.3.1 =
|
113 |
+
|
114 |
+
* Fix: jQuery v3 compatibility
|
115 |
+
* Fix: Mobile Menu not working in FireFox dev tools
|
116 |
+
* Fix: Animated toggle block vertical positioning
|
117 |
+
|
118 |
= 2.5.3 =
|
119 |
|
120 |
* New: Animated Menu Toggle Block
|