diff options
author | Papoteur <papoteur@mageialinux-online.org> | 2016-10-22 15:08:47 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageialinux-online.org> | 2016-10-22 15:08:47 +0200 |
commit | 9ba7adc14f8a073ec37ac3a39a030dcd0e135d5d (patch) | |
tree | 4112e7605a7a1efbdfbd5e6f2cecd97bc6caf237 /mcc/5/en/content/nwSearchFnt.js | |
parent | b3cff58a912ae52d27b6dcb61b263ed04bfd40d3 (diff) | |
download | doc-9ba7adc14f8a073ec37ac3a39a030dcd0e135d5d.tar doc-9ba7adc14f8a073ec37ac3a39a030dcd0e135d5d.tar.gz doc-9ba7adc14f8a073ec37ac3a39a030dcd0e135d5d.tar.bz2 doc-9ba7adc14f8a073ec37ac3a39a030dcd0e135d5d.tar.xz doc-9ba7adc14f8a073ec37ac3a39a030dcd0e135d5d.zip |
Adding or refreshing mcc in en
Diffstat (limited to 'mcc/5/en/content/nwSearchFnt.js')
-rw-r--r-- | mcc/5/en/content/nwSearchFnt.js | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/mcc/5/en/content/nwSearchFnt.js b/mcc/5/en/content/nwSearchFnt.js index fc12d113..13327867 100644 --- a/mcc/5/en/content/nwSearchFnt.js +++ b/mcc/5/en/content/nwSearchFnt.js @@ -104,11 +104,17 @@ function Effectuer_recherche(expressionInput) { }
}
finalWordsList = tempTab;
+
+ if (!finalWordsList.length) {
+ finalWordsList = wordsList;
+ }
+
+ fileAndWordList = SortResults(finalWordsList);
- if (finalWordsList.length) {
+ if (fileAndWordList && fileAndWordList.length) {
//search 'and' and 'or' one time
- fileAndWordList = SortResults(finalWordsList);
+ //fileAndWordList = SortResults(finalWordsList);
var cpt = fileAndWordList.length;
for (var i = cpt - 1; i >= 0; i--) {
@@ -432,6 +438,11 @@ function SortResults(mots) { // get the list of the indices of the files.
var listNumerosDesFicStr = w[mots[t].toString()];
//alert ("listNumerosDesFicStr "+listNumerosDesFicStr);
+
+ if (!listNumerosDesFicStr) {
+ return;
+ }
+
var tab = listNumerosDesFicStr.split(",");
//for each file (file's index):
|