WP Responsive Menu - Version 2.0.5

Version Description

Download this release

Release Info

Developer sagarseth9
Plugin Icon 128x128 WP Responsive Menu
Version 2.0.5
Comparing to
See all releases

Code changes from version 2.0.4 to 2.0.5

Files changed (3) hide show
  1. css/wprmenu.css +0 -4
  2. readme.txt +7 -3
  3. wp-responsive-menu.php +2 -1
css/wprmenu.css CHANGED
@@ -1,8 +1,4 @@
1
  /*
2
- Basic font for the plugin
3
- */
4
- @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600);
5
- /*
6
  Icons from icon font - setup
7
  */
8
  @font-face {
1
  /*
 
 
 
 
2
  Icons from icon font - setup
3
  */
4
  @font-face {
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: sagarseth9,magnigenie
3
  Tags: Wordpress Responsive Menu, Genesis responsive menu, Genesis Mobile Menu, Thesis Mobile Menu, Thesis Responsive Menu, Mobile Menu, Responsive Menu Plugin, WP Responsive Menu, Wordpress mobile menu
4
  Requires at least: 3.4
5
- Tested up to: 3.9.2
6
- Stable tag: 2.0.4
7
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=sagar.seth9@gmail.com&item_name=WP%20Responsive%20Menu&return=http://magnigenie.com
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -55,6 +55,10 @@ Check out [the demo](http://magnigenie.com/wp-responsive-menu-mobile-menu-plugin
55
 
56
  == ChangeLog ==
57
 
 
 
 
 
58
  = Version 2.0.4 =
59
 
60
  * Fixed browser javascript issue for lower versions of IE.
@@ -87,6 +91,6 @@ Check out [the demo](http://magnigenie.com/wp-responsive-menu-mobile-menu-plugin
87
 
88
  == Upgrade Notice ==
89
 
90
- = Version 2.0.4 =
91
 
92
  * As I have updated the plugin options panel so there might be few settings problems. If you are having any such problem try to check the plugin settings and configure it accordingly.
2
  Contributors: sagarseth9,magnigenie
3
  Tags: Wordpress Responsive Menu, Genesis responsive menu, Genesis Mobile Menu, Thesis Mobile Menu, Thesis Responsive Menu, Mobile Menu, Responsive Menu Plugin, WP Responsive Menu, Wordpress mobile menu
4
  Requires at least: 3.4
5
+ Tested up to: 4.2
6
+ Stable tag: 2.0.5
7
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=sagar.seth9@gmail.com&item_name=WP%20Responsive%20Menu&return=http://magnigenie.com
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
55
 
56
  == ChangeLog ==
57
 
58
+ = Version 2.0.5 =
59
+
60
+ * Updated google font loading method so that it would adapt to the protocol of the website.
61
+
62
  = Version 2.0.4 =
63
 
64
  * Fixed browser javascript issue for lower versions of IE.
91
 
92
  == Upgrade Notice ==
93
 
94
+ = Version 2.0.5 =
95
 
96
  * As I have updated the plugin options panel so there might be few settings problems. If you are having any such problem try to check the plugin settings and configure it accordingly.
wp-responsive-menu.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Responsive Menu
4
  Plugin URI: http://magnigenie.com/wp-responsive-menu-mobile-menu-plugin-wordpress/
5
  Description: WP Responsive menu is a mobile menu plugin which comes with 1 click installation and has lots of admin option to customize the plugin as per your needs.
6
- Version: 2.0.4
7
  Author: Nirmal Ram
8
  Author URI: http://magnigenie.com
9
  License: GPLv2 or later
@@ -32,6 +32,7 @@ add_action( 'wp_enqueue_scripts', 'wprmenu_enqueue_scripts' );
32
  function wprmenu_enqueue_scripts() {
33
  $options = get_option('wprmenu_options');
34
  wp_enqueue_style( 'wprmenu.css' , plugins_url('css/wprmenu.css', __FILE__) );
 
35
  wp_enqueue_script('jquery.transit', plugins_url( '/js/jquery.transit.min.js', __FILE__ ), array( 'jquery' ));
36
  wp_enqueue_script('sidr', plugins_url( '/js/jquery.sidr.js', __FILE__ ), array( 'jquery' ));
37
  wp_enqueue_script('wprmenu.js', plugins_url( '/js/wprmenu.js', __FILE__ ), array( 'jquery' ));
3
  Plugin Name: WP Responsive Menu
4
  Plugin URI: http://magnigenie.com/wp-responsive-menu-mobile-menu-plugin-wordpress/
5
  Description: WP Responsive menu is a mobile menu plugin which comes with 1 click installation and has lots of admin option to customize the plugin as per your needs.
6
+ Version: 2.0.5
7
  Author: Nirmal Ram
8
  Author URI: http://magnigenie.com
9
  License: GPLv2 or later
32
  function wprmenu_enqueue_scripts() {
33
  $options = get_option('wprmenu_options');
34
  wp_enqueue_style( 'wprmenu.css' , plugins_url('css/wprmenu.css', __FILE__) );
35
+ wp_enqueue_style( 'wprmenu-font' , '//fonts.googleapis.com/css?family=Open+Sans:400,300,600' );
36
  wp_enqueue_script('jquery.transit', plugins_url( '/js/jquery.transit.min.js', __FILE__ ), array( 'jquery' ));
37
  wp_enqueue_script('sidr', plugins_url( '/js/jquery.sidr.js', __FILE__ ), array( 'jquery' ));
38
  wp_enqueue_script('wprmenu.js', plugins_url( '/js/wprmenu.js', __FILE__ ), array( 'jquery' ));