Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 4158 Rev 4159
Línea 348... Línea 348...
348
            'method': 'get',
348
            'method': 'get',
349
            'url': $(this).data('url'),
349
            'url': $(this).data('url'),
350
        }).done(function(response) {
350
        }).done(function(response) {
351
            if (response['success']) {
351
            if (response['success']) {
352
                var data = response.data
352
                var data = response.data
353
                $("#interview #comment").val('');
353
                $("#form-interview #comment").val('');
354
                $('#interview #status').val('$status_acepted');
354
                $('#form-interview #status').val('$status_acepted');
355
                $("#interview #points").val('$points_0');
355
                $("#form-interview #points").val('$points_0');
356
                $("#content").hide();
356
                $("#content").hide();
357
                $("#main").show()
357
                $("#main").show()
358
            } else {
358
            } else {
359
                $.fn.showError(response['data']);
359
                $.fn.showError(response['data']);
360
            }
360
            }