Omit semicolons consistently in docs
This commit is contained in:
parent
4d7b2ddba9
commit
bdf9ce4c45
4 changed files with 16 additions and 16 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue