Skip to content

Commit

Permalink
Add type to buttons in tooltip-viewport example
Browse files Browse the repository at this point in the history
  • Loading branch information
hnrch02 committed Sep 25, 2014
1 parent 0d04dca commit a332c18
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/examples/tooltip-viewport/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>


Expand Down

0 comments on commit a332c18

Please sign in to comment.