Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
santiago committed Feb 11, 2013
1 parent f4f801a commit 1722a64
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions public/js/formipress.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,14 @@ $(function() {
$(this).find(".alt").remove();
});

$("#myModal")
.on('show', function() {
$('#menu #productos').css('z-index', 1039);
})
.on('hidden', function() {
$('#menu #productos').css('z-index', 2000);
});

$("li.thumb a").click(function(e) {
var id = parseInt($(this).parent().attr("id"));
var name = formipress[id].name;
Expand Down

0 comments on commit 1722a64

Please sign in to comment.