Changeset 5547430 in ammosreader for doc/html/_static/searchtools.js


Ignore:
Timestamp:
05/04/22 16:12:24 (3 years ago)
Author:
Enrico Schwass <ennoausberlin@…>
Branches:
AmmosSource, guix
Children:
1b72462
Parents:
f3421e6
Message:

docs updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/html/_static/searchtools.js

    rf3421e6 r5547430  
    55 * Sphinx JavaScript utilities for the full-text search.
    66 *
    7  * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
     7 * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
    88 * :license: BSD, see LICENSE for details.
    99 *
     
    329329
    330330    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];
    332334        var fullname = (prefix ? prefix + '.' : '') + name;
    333335        var fullnameLower = fullname.toLowerCase()
     
    343345            score += Scorer.objPartialMatch;
    344346          }
    345           var match = objects[prefix][name];
    346347          var objname = objnames[match[1]][2];
    347348          var title = titles[match[0]];
Note: See TracChangeset for help on using the changeset viewer.