Skip to content

Commit

Permalink
Fix HTML errors
Browse files Browse the repository at this point in the history
  • Loading branch information
juthilo committed Mar 28, 2014
1 parent 90902db commit 440cede
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 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 @@ -28,21 +28,21 @@

<body>

<button class="btn pull-right tooltip-bottom", title="This should be shifted to the left">Shift Left</button>
<button class="btn tooltip-bottom", title="This should be shifted to the right">Shift Right</button>
<button class="btn tooltip-right", title="This should be shifted down">Shift Down</button>
<button class="btn pull-right tooltip-bottom" title="This should be shifted to the left">Shift Left</button>
<button class="btn tooltip-bottom" title="This should be shifted to the right">Shift Right</button>
<button class="btn tooltip-right" title="This should be shifted down">Shift Down</button>

<div class="placeholder">There is a button down there ↓</div>

<button class="btn tooltip-right", title="This should be shifted up">Shift Up</button>
<button class="btn tooltip-right" title="This should be shifted up">Shift Up</button>

<div class="container-viewport">
<button class="btn tooltip-viewport-bottom", title="This should be shifted to the left">Shift Left</button>
<button class="btn tooltip-viewport-right", title="This should be shifted down">Shift Down</button>
<button class="btn tooltip-viewport-bottom" title="This should be shifted to the left">Shift Left</button>
<button class="btn tooltip-viewport-right" title="This should be shifted down">Shift Down</button>

<button class="btn pull-right tooltip-viewport-bottom", title="This should be shifted to the right">Shift Right</button>
<button class="btn pull-right tooltip-viewport-bottom" title="This should be shifted to the right">Shift Right</button>

<button class="btn tooltip-viewport-right btn-bottom", title="This should be shifted up">Shift Up</button>
<button class="btn tooltip-viewport-right btn-bottom" title="This should be shifted up">Shift Up</button>
</div>


Expand Down
6 changes: 3 additions & 3 deletions docs/examples/tooltip-viewport/tooltip-viewport.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ body {
max-width: 500px;
}
.tooltip .tooltip-inner {
min-height: 200px;
min-width: 250px;
max-width: 500px;
min-height: 200px;
}
.placeholder {
height: 900px;
}
.container-viewport {
position: absolute;
left: 200px;
top: 600px;
left: 200px;
width: 600px;
height: 400px;
background: #c00;
}
.btn-bottom {
position: absolute;
left: 0;
bottom: 0;
left: 0;
}

0 comments on commit 440cede

Please sign in to comment.