mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 15:18:08 +02:00
Addressing the bug 742099 review
This commit is contained in:
parent
2578476e7c
commit
fd85882366
4 changed files with 51 additions and 32 deletions
|
@ -63,7 +63,7 @@
|
|||
<div id="searchView" class="hidden">
|
||||
<div id="searchToolbar">
|
||||
<input id="searchTermsInput" onkeydown='if (event.keyCode == 13) PDFView.search()'>
|
||||
<button id="searchButton" onclick='PDFView.search()' data-l10n-id="search_button">Find</button>
|
||||
<button id="searchButton" onclick='PDFView.search()' data-l10n-id="search">Find</button>
|
||||
</div>
|
||||
<div id="searchResults"></div>
|
||||
</div>
|
||||
|
|
|
@ -720,7 +720,8 @@ var PDFView = {
|
|||
pageFound = true;
|
||||
}
|
||||
if (!pageFound) {
|
||||
searchResults.textContent = '(Not found)';
|
||||
searchResults.textContent = mozL10n.get('search_terms_not_found', null,
|
||||
'(Not found)';
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue