|
|
|
@ -76,26 +76,26 @@
@@ -76,26 +76,26 @@
|
|
|
|
|
|
|
|
|
|
<div id="toolbarViewer"> |
|
|
|
|
<div id="toolbarViewerLeft"> |
|
|
|
|
<button id="sidebarToggle" class="toolbarButton" title="Toggle Sidebar" tabindex="3" data-l10n-id="toggle_slider"> |
|
|
|
|
<button id="sidebarToggle" class="toolbarButton" title="Toggle Sidebar" tabindex="4" data-l10n-id="toggle_slider"> |
|
|
|
|
<span data-l10n-id="toggle_slider_label">Toggle Sidebar</span> |
|
|
|
|
</button> |
|
|
|
|
<div class="toolbarButtonSpacer"></div> |
|
|
|
|
<div class="splitToolbarButton"> |
|
|
|
|
<button class="toolbarButton pageUp" title="Previous Page" onclick="PDFView.page--" id="previous" tabindex="4" data-l10n-id="previous"> |
|
|
|
|
<button class="toolbarButton pageUp" title="Previous Page" onclick="PDFView.page--" id="previous" tabindex="5" data-l10n-id="previous"> |
|
|
|
|
<span data-l10n-id="previous_label">Previous</span> |
|
|
|
|
</button> |
|
|
|
|
<div class="splitToolbarButtonSeparator"></div> |
|
|
|
|
<button class="toolbarButton pageDown" title="Next Page" onclick="PDFView.page++" id="next" tabindex="5" data-l10n-id="next"> |
|
|
|
|
<button class="toolbarButton pageDown" title="Next Page" onclick="PDFView.page++" id="next" tabindex="6" data-l10n-id="next"> |
|
|
|
|
<span data-l10n-id="next_label">Next</span> |
|
|
|
|
</button> |
|
|
|
|
</div> |
|
|
|
|
<label class="toolbarLabel" for="pageNumber" data-l10n-id="page_label">Page: </label> |
|
|
|
|
<input type="number" id="pageNumber" class="toolbarField pageNumber" onchange="PDFView.page = this.value;" value="1" size="4" min="1" tabindex="6"> |
|
|
|
|
<input type="number" id="pageNumber" class="toolbarField pageNumber" onchange="PDFView.page = this.value;" value="1" size="4" min="1" tabindex="7"> |
|
|
|
|
</input> |
|
|
|
|
<span id="numPages" class="toolbarLabel"></span> |
|
|
|
|
</div> |
|
|
|
|
<div id="toolbarViewerRight"> |
|
|
|
|
<input id="fileInput" class="fileInput" type="file" oncontextmenu="return false;" tabindex="10" /> |
|
|
|
|
<input id="fileInput" class="fileInput" type="file" oncontextmenu="return false;" tabindex="11" /> |
|
|
|
|
|
|
|
|
|
<!-- |
|
|
|
|
<input id="fileInput" class="fileInput" type="file" oncontextmenu="return false;" style="visibility: hidden; position: fixed; right: 0; top: 0" /> |
|
|
|
@ -119,16 +119,16 @@
@@ -119,16 +119,16 @@
|
|
|
|
|
<div class="outerCenter"> |
|
|
|
|
<div class="innerCenter" id="toolbarViewerMiddle"> |
|
|
|
|
<div class="splitToolbarButton"> |
|
|
|
|
<button class="toolbarButton zoomOut" title="Zoom Out" onclick="PDFView.zoomOut();" tabindex="7" data-l10n-id="zoom_out"> |
|
|
|
|
<button class="toolbarButton zoomOut" title="Zoom Out" onclick="PDFView.zoomOut();" tabindex="8" data-l10n-id="zoom_out"> |
|
|
|
|
<span data-l10n-id="zoom_out_label">Zoom Out</span> |
|
|
|
|
</button> |
|
|
|
|
<div class="splitToolbarButtonSeparator"></div> |
|
|
|
|
<button class="toolbarButton zoomIn" title="Zoom In" onclick="PDFView.zoomIn();" tabindex="8" data-l10n-id="zoom_in"> |
|
|
|
|
<button class="toolbarButton zoomIn" title="Zoom In" onclick="PDFView.zoomIn();" tabindex="9" data-l10n-id="zoom_in"> |
|
|
|
|
<span data-l10n-id="zoom_in_label">Zoom In</span> |
|
|
|
|
</button> |
|
|
|
|
</div> |
|
|
|
|
<span class="dropdownToolbarButton"> |
|
|
|
|
<select id="scaleSelect" onchange="PDFView.parseScale(this.value);" title="Zoom" oncontextmenu="return false;" tabindex="9" data-l10n-id="zoom"> |
|
|
|
|
<select id="scaleSelect" onchange="PDFView.parseScale(this.value);" title="Zoom" oncontextmenu="return false;" tabindex="10" data-l10n-id="zoom"> |
|
|
|
|
<option id="pageAutoOption" value="auto" selected="selected" data-l10n-id="page_scale_auto">Automatic Zoom</option> |
|
|
|
|
<option id="pageActualOption" value="page-actual" data-l10n-id="page_scale_actual">Actual Size</option> |
|
|
|
|
<option id="pageFitOption" value="page-fit" data-l10n-id="page_scale_fit">Fit Page</option> |
|
|
|
|