Skip to content

Commit

Permalink
Blocker opacity
Browse files Browse the repository at this point in the history
Set opacity of #mm-blocker with jQuery for IE<9 support
  • Loading branch information
FrDH committed Nov 27, 2013
1 parent 2d18ee0 commit c9f7976
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jQuery.mmenu",
"main": "src/js/jquery.mmenu.js",
"version": "4.1.2",
"version": "4.1.3",
"homepage": "http://mmenu.frebsite.nl/",
"authors": [
"Fred Heusschen <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion mmenu.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mmenu",
"version": "4.1.2",
"version": "4.1.3",
"title": "jQuery mmenu",
"description": "A jQuery plugin that creates slick app look-alike sliding menus for your (mobile) website with horizontal or vertical submenus. It's easy to customize and has options for headers, labels, counters, a searchfield and more.",
"homepage": "http://mmenu.frebsite.nl",
Expand Down
8 changes: 5 additions & 3 deletions src/js/jquery.mmenu.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jQuery mmenu v4.1.2
* jQuery mmenu v4.1.3
* @requires jQuery 1.7.0 or later
*
* mmenu.frebsite.nl
Expand All @@ -16,7 +16,7 @@
(function( $ ) {

var _PLUGIN_ = 'mmenu',
_VERSION_ = '4.1.2';
_VERSION_ = '4.1.3';


// Plugin already excists
Expand Down Expand Up @@ -343,7 +343,9 @@

if ( !glbl.$blck )
{
glbl.$blck = $( '<div id="' + _c.blocker + '" />' ).appendTo( glbl.$body );
glbl.$blck = $( '<div id="' + _c.blocker + '" />' )
.css( 'opacity', 0 )
.appendTo( glbl.$body );
}

glbl.$blck
Expand Down
4 changes: 2 additions & 2 deletions src/js/jquery.mmenu.min.all.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/js/jquery.mmenu.min.js

Large diffs are not rendered by default.

0 comments on commit c9f7976

Please sign in to comment.