Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfat <jacobthornton@gmail.com>2014-06-08 06:11:44 +0400
committerfat <jacobthornton@gmail.com>2014-06-08 06:11:44 +0400
commit91103e6d1f750bc53dce7b4720cf78a50e1baa54 (patch)
tree0ceb0e9314f4ebb06e9a69beb5e99d19f165d039 /js/tests/visual/popover.html
parent3b99a41246cb25b1fba79d14007ed0238409e63f (diff)
Adds isolated visual tests for javascript plugins (decoupled from docs). This makes it
faster and easier to test/develop js functionality not represented in unit tests, and gives us a playground for interactions, etc. It also makes it so developing javascript is now decoupled form jekyll, which should make everything faster and less painful. This commit also reverts my filter commit https://github.com/twbs/bootstrap/commit/9900771aa7f1b3ddcee49aec84082104776ace70 which broke scrollspy for dropdowns.
Diffstat (limited to 'js/tests/visual/popover.html')
-rw-r--r--js/tests/visual/popover.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/js/tests/visual/popover.html b/js/tests/visual/popover.html
new file mode 100644
index 0000000000..c09739ff90
--- /dev/null
+++ b/js/tests/visual/popover.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Popover</title>
+ <link rel="stylesheet" type="text/css" href="../../../dist/css/bootstrap.min.css">
+</head>
+<body>
+
+<div class="container">
+
+ <div class="page-header">
+ <h1>Popover <small>Bootstrap Visual Test</small></h1>
+ </div>
+
+ <button type="button" class="btn btn-default js-popover" data-container="body" data-toggle="popover" data-placement="left" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." data-original-title="" title="">
+ Popover on left
+ </button>
+ <button type="button" class="btn btn-default js-popover" data-container="body" data-toggle="popover" data-placement="top" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." data-original-title="" title="">
+ Popover on top
+ </button>
+ <button type="button" class="btn btn-default js-popover" data-container="body" data-toggle="popover" data-placement="bottom" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." data-original-title="" title="">
+ Popover on bottom
+ </button>
+ <button type="button" class="btn btn-default js-popover" data-container="body" data-toggle="popover" data-placement="right" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." data-original-title="" title="">
+ Popover on right
+ </button>
+
+</div>
+
+<!-- JavaScript Includes -->
+<script src="../vendor/jquery.min.js"></script>
+<script src="../../transition.js"></script>
+<script src="../../tooltip.js"></script>
+<script src="../../popover.js"></script>
+
+<!-- JavaScript Test -->
+<script>
+$(function () {
+ $('.js-popover').popover()
+})
+</script>
+
+</body>
+</html>