aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Fenkart <[email protected]>2014-09-26 00:14:48 +0200
committerHeinrich Fenkart <[email protected]>2014-09-26 00:14:48 +0200
commita332c18c8793dee45e21cb3872d369600f394757 (patch)
tree4ccc1c40586b3fdc4562747951b33cfeed86ed94
parent0d04dcaebd7b0b0427ae3a6e79ddd86cd981b58f (diff)
downloadbootstrap-a332c18c8793dee45e21cb3872d369600f394757.tar.xz
bootstrap-a332c18c8793dee45e21cb3872d369600f394757.zip
Add type to buttons in tooltip-viewport example
-rw-r--r--docs/examples/tooltip-viewport/index.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/examples/tooltip-viewport/index.html b/docs/examples/tooltip-viewport/index.html
index 4a0c5e1da..d25a6af4c 100644
--- a/docs/examples/tooltip-viewport/index.html
+++ b/docs/examples/tooltip-viewport/index.html
@@ -29,19 +29,19 @@
<body>
- <button class="btn btn-default pull-right tooltip-bottom" title="This should be shifted to the left">Shift Left</button>
- <button class="btn btn-default tooltip-bottom" title="This should be shifted to the right">Shift Right</button>
- <button class="btn btn-default tooltip-right" title="This should be shifted down">Shift Down</button>
+ <button type="button" class="btn btn-default pull-right tooltip-bottom" title="This should be shifted to the left">Shift Left</button>
+ <button type="button" class="btn btn-default tooltip-bottom" title="This should be shifted to the right">Shift Right</button>
+ <button type="button" class="btn btn-default tooltip-right" title="This should be shifted down">Shift Down</button>
- <button class="btn btn-default tooltip-right btn-bottom" title="This should be shifted up">Shift Up</button>
+ <button type="button" class="btn btn-default tooltip-right btn-bottom" title="This should be shifted up">Shift Up</button>
<div class="container-viewport">
- <button class="btn btn-default tooltip-viewport-bottom" title="This should be shifted to the left">Shift Left</button>
- <button class="btn btn-default tooltip-viewport-right" title="This should be shifted down">Shift Down</button>
+ <button type="button" class="btn btn-default tooltip-viewport-bottom" title="This should be shifted to the left">Shift Left</button>
+ <button type="button" class="btn btn-default tooltip-viewport-right" title="This should be shifted down">Shift Down</button>
- <button class="btn btn-default pull-right tooltip-viewport-bottom" title="This should be shifted to the right">Shift Right</button>
+ <button type="button" class="btn btn-default pull-right tooltip-viewport-bottom" title="This should be shifted to the right">Shift Right</button>
- <button class="btn btn-default tooltip-viewport-right btn-bottom" title="This should be shifted up">Shift Up</button>
+ <button type="button" class="btn btn-default tooltip-viewport-right btn-bottom" title="This should be shifted up">Shift Up</button>
</div>