Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for dataTypes (0.03 seconds)

  1. src/main/webapp/js/search.js

        if (values.length === 2 && $queryId.length > 0) {
          var docId = values[1];
          var actionUrl = contextPath + "/api/v1/documents/" + docId + "/favorite";
    
          $.ajax({
            dataType: "json",
            cache: false,
            type: "post",
            timeout: AJAX_TIMEOUT,
            url: actionUrl,
            data: {
              queryId: $queryId.val()
            }
          })
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  2. src/main/webapp/js/suggestor.js

                this.hideSuggestionBox();
                suggestingSts = false;
                return;
              }
    
              $.ajax({
                url: settingAjaxInfo.url,
                type: "get",
                dataType: "json",
                cache: false,
                data: {
                  q: $textArea.val(),
                  field: settingAjaxInfo.fn,
                  num: settingAjaxInfo.num * 2,
                  lang: settingAjaxInfo.lang
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
Back to Top