Changes in doc/html/_static/searchtools.js [5547430:ada37fa] in ammosreader
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/html/_static/searchtools.js
r5547430 rada37fa 5 5 * Sphinx JavaScript utilities for the full-text search. 6 6 * 7 * :copyright: Copyright 2007-202 2by the Sphinx team, see AUTHORS.7 * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. 8 8 * :license: BSD, see LICENSE for details. 9 9 * … … 329 329 330 330 for (var prefix in objects) { 331 for (var iMatch = 0; iMatch != objects[prefix].length; ++iMatch) { 332 var match = objects[prefix][iMatch]; 333 var name = match[4]; 331 for (var name in objects[prefix]) { 334 332 var fullname = (prefix ? prefix + '.' : '') + name; 335 333 var fullnameLower = fullname.toLowerCase() … … 345 343 score += Scorer.objPartialMatch; 346 344 } 345 var match = objects[prefix][name]; 347 346 var objname = objnames[match[1]][2]; 348 347 var title = titles[match[0]];
Note:
See TracChangeset
for help on using the changeset viewer.