From ea437351ed115b240e9b150da7ee93582f31dd17 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 25 Mar 2012 19:47:13 -0700 Subject: add heads up note for required href on alert dismiss actions --- docs/components.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'docs/components.html') diff --git a/docs/components.html b/docs/components.html index a78dabeba..d5a3e2a99 100644 --- a/docs/components.html +++ b/docs/components.html @@ -1689,10 +1689,11 @@
 <div class="alert">
-  <a class="close" data-dismiss="alert">×</a>
+  <a class="close" data-dismiss="alert" href="#">×</a>
   <strong>Warning!</strong> Best check yo self, you're not looking too good.
 </div>
 
+

Heads up! iOS devices require an href="#" for the dismissal of alerts. Be sure to include it and the data attribute for fully responsive and dismissable alerts.

Easily extend the standard alert message with two optional classes: .alert-block for more padding and text controls and .alert-heading for a matching heading.

× @@ -1701,7 +1702,7 @@
 <div class="alert alert-block">
-  <a class="close" data-dismiss="alert">×</a>
+  <a class="close" data-dismiss="alert" href="#">×</a>
   <h4 class="alert-heading">Warning!</h4>
   Best check yo self, you're not...
 </div>
-- 
cgit v1.2.3