Commit a134491f authored by Chris Rebert's avatar Chris Rebert
Browse files

add togglable scrollbar-inducing content to Modal visual test

parent 6ddb8c2d
5 merge requests!28721Hot test,!16018Enhancements to Modal visual test,!16605Test pull please ignore,!22103test,!25326Adjust examples
Showing with 18 additions and 0 deletions
+18 -0
......@@ -13,6 +13,15 @@
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
#tall {
height: 1500px;
width: 100px;
background-color: black;
color: white;
}
</style>
</head>
<body>
......@@ -122,6 +131,12 @@
Launch demo modal
</button>
<button id="tall-toggle" class="btn btn-default">Toggle tall &lt;body&gt; content</button>
<br><br>
<div id="tall" style="display: none;">
Tall body content to force the page to have a scrollbar.
</div>
</div>
<!-- JavaScript Includes -->
......@@ -137,6 +152,9 @@
$(function () {
$('.js-popover').popover()
$('.js-tooltip').tooltip()
$('#tall-toggle').click(function () {
$('#tall').toggle()
})
})
</script>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment