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

github.com/twbs/ratchet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBen Schwarz <ben@germanforblack.com>2012-12-24 05:39:59 +0400
committerBen Schwarz <ben@germanforblack.com>2012-12-24 05:39:59 +0400
commit086e1f7e43f1f4ca4ab802acce6ad51266ac3a44 (patch)
tree7c0364a917f5512b76d203dcc104783bc7b30ef1 /docs
parent9ad8b23b36538dad953720f39a09264b7d8eb5e9 (diff)
Remove spaces around arguments
Diffstat (limited to 'docs')
-rw-r--r--docs/modal-demo.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/modal-demo.html b/docs/modal-demo.html
new file mode 100644
index 0000000..bdaca17
--- /dev/null
+++ b/docs/modal-demo.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>Modal slideup</title>
+
+ <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
+
+ <link rel="stylesheet" href="../dist/ratchet.css">
+ <script src="../dist/ratchet.js"></script>
+ <script src="js/docs.js"></script>
+ <script src="js/fingerblast.js"></script>
+ </head>
+ <body>
+ <div class="content content-padded">
+ <a href="#myModal" class="button">Open modal</a>
+ </div>
+
+ <div id="myModal" class="modal">
+ <header class="bar-title">
+ <h1 class="title">Modal</h1>
+ <a class="button" href="#myModal">
+ Close
+ </a>
+ </header>
+
+ <div class="content content-padded">
+ <p>The contents of my modal</p>
+ </div>
+ </div>
+ </body>
+</html> \ No newline at end of file