mirror of
https://github.com/twbs/bootstrap.git
synced 2025-09-26 05:19:15 +02:00
Omit semicolons consistently in docs
This commit is contained in:
@@ -1444,10 +1444,10 @@ $('#my-alert').bind('closed.bs.alert', function () {
|
||||
</button>
|
||||
<script>
|
||||
$('#loading-example-btn').click(function () {
|
||||
var btn = $(this);
|
||||
btn.button('loading');
|
||||
var btn = $(this)
|
||||
btn.button('loading')
|
||||
$.ajax(...).always(function () {
|
||||
btn.button('reset');
|
||||
btn.button('reset')
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@@ -1552,10 +1552,10 @@ $('.btn').button()
|
||||
<button id="loading-example-btn" type="button" class="btn btn-primary" data-loading-text="loading stuff...">...</button>
|
||||
<script>
|
||||
$('#loading-example-btn').click(function () {
|
||||
var btn = $(this);
|
||||
btn.button('loading');
|
||||
var btn = $(this)
|
||||
btn.button('loading')
|
||||
$.ajax(...).always(function () {
|
||||
btn.button('reset');
|
||||
btn.button('reset')
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user