1
0
Fork 0
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:
Yury Delendik 2012-05-31 15:56:38 -05:00
parent 2578476e7c
commit fd85882366
4 changed files with 51 additions and 32 deletions

View file

@ -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>

View file

@ -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)';
}
},