Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 3896 | Rev 3926 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3896 Rev 3908
Línea 544... Línea 544...
544
     */
544
     */
545
    const removeBehavior = (id) => {
545
    const removeBehavior = (id) => {
546
        $.ajax({
546
        $.ajax({
547
            'dataType': 'json',
547
            'dataType': 'json',
548
            'accept': 'application/json',
548
            'accept': 'application/json',
549
            'method': 'delete',
549
            'method': 'post',
550
            'url': '/settings/behaviors/delete/' + id,
550
            'url': '/settings/behaviors/delete/' + id,
551
        })
551
        })
552
        .done(function(response) {
552
        .done(function(response) {
553
            if (response['success']) {
553
            if (response['success']) {
554
                behaviors = behaviors.filter((item) => item.id != id);
554
                behaviors = behaviors.filter((item) => item.id != id);