Ignore:
Timestamp:
2022-02-01T11:54:46+13:00 (2 years ago)
Author:
cstephen
Message:

Migrate to using jQuery3 and jQuery-UI-1.13.2; and integrate cookie consent manager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/web/interfaces/default/js/javascript-global-functions.js

    r33218 r36027  
    549549    // since get-meta-array and especially set-meta-array can be large, e.g. for user comments.
    550550    $.ajax({url: url, async: async_setting, type: method, data: data})
    551         .success(function(response) {
     551        .done(function(response) {
    552552        ajaxResponse = response;
    553553//      console.log("** (" + callingFunction + ") Response received from server: " + ajaxResponse);
     
    561561        }
    562562        })
    563         .error(function(response) {
     563        .fail(function(response) {
    564564            if(errorResponseFunction != null) {
    565565                errorResponseFunction(response);
Note: See TracChangeset for help on using the changeset viewer.