Skip to content

Commit

Permalink
fix inability to scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane Stebner committed Aug 23, 2018
1 parent 3fddf2d commit 54a4b71
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/jAlert.css

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1041,6 +1041,23 @@ <h3 class="font-bree-serif">Roadmap</h3>
<section class="sec-header">
<h3 class="font-bree-serif">Changelog</h3>
<div class="accordion" id="changelog-accordion">
<!--
--- VERSION 4.6.5 ---
-->
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion3" href="#foursixfive">
<strong>Version 4.6.5</strong>
</a>
</div>
<div id="foursixfive" class="accordion-body collapse in">
<div class="accordion-inner">
<ul>
<li><span class="label label-success">Fixed</span> scroll issue with flex</li>
</ul>
</div>
</div>
</div>
<!--
--- VERSION 4.6.4 ---
-->
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jAlert",
"version": "4.6.4",
"version": "4.6.5",
"description": "Simple jQuery (Modal | Popup | Lightbox | Alert) Plugin",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions src/jAlert.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ body.ja_blur > *:not(.ja_wrap)
-webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
/* important for scrollability with flex */
min-height: 0px;
}

/*
Expand Down

0 comments on commit 54a4b71

Please sign in to comment.