Changeset 5547430 in ammosreader for doc/html/_static/searchtools.js
- Timestamp:
- 05/04/22 16:12:24 (3 years ago)
- Branches:
- AmmosSource, guix
- Children:
- 1b72462
- Parents:
- f3421e6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/html/_static/searchtools.js
rf3421e6 r5547430 5 5 * Sphinx JavaScript utilities for the full-text search. 6 6 * 7 * :copyright: Copyright 2007-202 1by the Sphinx team, see AUTHORS.7 * :copyright: Copyright 2007-2022 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 name in objects[prefix]) { 331 for (var iMatch = 0; iMatch != objects[prefix].length; ++iMatch) { 332 var match = objects[prefix][iMatch]; 333 var name = match[4]; 332 334 var fullname = (prefix ? prefix + '.' : '') + name; 333 335 var fullnameLower = fullname.toLowerCase() … … 343 345 score += Scorer.objPartialMatch; 344 346 } 345 var match = objects[prefix][name];346 347 var objname = objnames[match[1]][2]; 347 348 var title = titles[match[0]];
Note:
See TracChangeset
for help on using the changeset viewer.