Skip to content

Commit

Permalink
Merge pull request #7 from bookdown/develop
Browse files Browse the repository at this point in the history
remove extraneous align attributes
  • Loading branch information
Paul M. Jones committed Mar 3, 2015
2 parents 420e678 + ca43aa5 commit 11b91a0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
}
],
"require": {
"php": ">=5.4.0",
"aura/cli": "~2.0",
"aura/html": "~2.0",
"aura/view": "~2.0",
Expand Down
4 changes: 2 additions & 2 deletions templates/navheader.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<td class="prev"><?php if ($prev) {
echo $this->anchorRaw($prev->getHref(), $prev->getTitle());
} ?></td>
<td class="parent" align="center"><?php if ($parent) {
<td class="parent"><?php if ($parent) {
echo $parent->getNumberAndTitle();
} ?></th>
<td class="next" align="right"><?php if ($next) {
<td class="next"><?php if ($next) {
echo $this->anchorRaw($next->getHref(), $next->getTitle());
} ?></td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions tests/Process/RenderingProcessTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ public function testRendering()
</tr>
<tr>
<td class="prev"><a href="/">Example Book</a></td>
<td class="parent" align="center">Example Book</th>
<td class="next" align="right"><a href="/chapter/section.html">Title</a></td>
<td class="parent">Example Book</th>
<td class="next"><a href="/chapter/section.html">Title</a></td>
</tr>
</table>
</nav>
Expand Down

0 comments on commit 11b91a0

Please sign in to comment.