From 81679981c539338be9cba6c5650579ec796afb69 Mon Sep 17 00:00:00 2001 From: Quy Ton Date: Wed, 5 Dec 2012 15:28:14 -0800 Subject: Escape × --- docs/components.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/components.html') diff --git a/docs/components.html b/docs/components.html index 518924026..bd528866c 100644 --- a/docs/components.html +++ b/docs/components.html @@ -2069,16 +2069,16 @@
 <div class="alert">
-  <button type="button" class="close" data-dismiss="alert">×</button>
+  <button type="button" class="close" data-dismiss="alert">&times;</button>
   <strong>Warning!</strong> Best check yo self, you're not looking too good.
 </div>
 

Dismiss buttons

Mobile Safari and Mobile Opera browsers, in addition to the data-dismiss="alert" attribute, require an href="#" for the dismissal of alerts when using an <a> tag.

-
<a href="#" class="close" data-dismiss="alert">×</a>
+
<a href="#" class="close" data-dismiss="alert">&times;</a>

Alternatively, you may use a <button> element with the data attribute, which we have opted to do for our docs. When using <button>, you must include type="button" or your forms may not submit.

-
<button type="button" class="close" data-dismiss="alert">×</button>
+
<button type="button" class="close" data-dismiss="alert">&times;</button>

Dismiss alerts via JavaScript

Use the alerts jQuery plugin for quick and easy dismissal of alerts.

@@ -2098,7 +2098,7 @@
 <div class="alert alert-block">
-  <button type="button" class="close" data-dismiss="alert">×</button>
+  <button type="button" class="close" data-dismiss="alert">&times;</button>
   <h4>Warning!</h4>
   Best check yo self, you're not...
 </div>
-- 
cgit v1.2.3