Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for li (0.13 sec)

  1. src/main/webapp/js/suggestor.js

                    chkCorrectWord = true;
    
                    $tmpli = $($olEle.children("li"));
                    for (k = 0; k < $tmpli.length; k++) {
                      if (str === $($tmpli.get(k)).html()) {
                        chkCorrectWord = false;
                      }
                    }
    
                    if (chkCorrectWord) {
                      $liEle = $("<li/>");
                      $liEle.html(str);
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 13.3K bytes
    - Viewed (2)
  2. docs/en/docs/js/custom.js

                    return
                }
                const li = document.createElement('li')
                li.innerHTML = `<a href="${v.html_url}" target="_blank">★ ${v.stargazers_count} - ${v.full_name}</a> by <a href="${v.owner.html_url}" target="_blank">@${v.owner.login}</a>`
                ul.append(li)
            })
        }
    
        setupTermynal();
        showRandomAnnouncement('announce-left', 5000)
    JavaScript
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat May 08 17:50:56 GMT 2021
    - 6.6K bytes
    - Viewed (0)
  3. .cm/plugins/filters/isEnabledAutomation/index.js

     *
     * <ul>
     *     <li>The automation is enabled for all PRs via the presence of 'always' in the appropriate map entry above.</li>
     * </ul>
     *
     * or
     *
     * <ul>
     *     <li>The author is a member of the Gradle organization,</li>
     *     <li>and has opted into the automation by adding their username to the appropriate map entry above.</li>
     * </ul>
     *
     * or
     *
     * <ul>
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.1K bytes
    - Viewed (0)
Back to top