diff options
| author | Mark Otto <[email protected]> | 2012-01-15 15:06:30 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-15 15:06:30 -0800 |
| commit | 3d9298b04ba493d877afaa81d8f48545f0a89a3f (patch) | |
| tree | b688e1377494259a9a6a4d9d64260644a622d3a8 /docs/javascript.html | |
| parent | 127c0d0b52c52227dcd3f346d371e5cd4219a08f (diff) | |
| download | bootstrap-3d9298b04ba493d877afaa81d8f48545f0a89a3f.tar.xz bootstrap-3d9298b04ba493d877afaa81d8f48545f0a89a3f.zip | |
fix the js alerts examples
Diffstat (limited to 'docs/javascript.html')
| -rw-r--r-- | docs/javascript.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/javascript.html b/docs/javascript.html index 64159ede7..2d7b74dd3 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -906,16 +906,17 @@ $('a[data-toggle="tab"]').on('shown', function (e) { <div class="span9 columns"> <h2>Example alerts</h2> <p>The alerts plugin works on regular alert messages, and block messages.</p> - <div class="alert-message warning fade in"> + <div class="alert fade in"> <a class="close" data-dismiss="alert" href="#">×</a> <p><strong>Holy guacamole!</strong> Best check yo self, you’re not looking too good.</p> </div> - <div class="alert-message block-message error fade in"> + <div class="alert alert-block alert-error fade in"> <a class="close" data-dismiss="alert" href="#">×</a> - <p><strong>Oh snap! You got an error!</strong> Change this and that and try again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum.</p> - <div class="alert-actions"> - <a class="btn small" href="#">Take this action</a> <a class="btn small" href="#">Or do this</a> - </div> + <h4 class="alert-heading">Oh snap! You got an error!</h4> + <p>Change this and that and try again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum.</p> + <p> + <a class="btn danger small" href="#">Take this action</a> <a class="btn small" href="#">Or do this</a> + </p> </div> <hr> <h2>Using bootstrap-alerts.js</h2> |
