Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 1097 Rev 1100
Línea 495... Línea 495...
495
        sections.push({
495
        sections.push({
496
            'id_section': new Date().getTime(),
496
            'id_section': new Date().getTime(),
497
            'title': title,
497
            'title': title,
498
            'type': type,
498
            'type': type,
499
            'text': text,
499
            'text': text,
-
 
500
            'answer':'',
500
            'options': []
501
            'options': []
501
        });
502
        });
502
        return renderData(sections);
503
        return renderData(sections);
503
    }
504
    }
504
    /**
505
    /**
Línea 529... Línea 530...
529
            if (item.id_section == id_section) {
530
            if (item.id_section == id_section) {
530
                item.options.push({
531
                item.options.push({
531
                    'id_section': id_section,
532
                    'id_section': id_section,
532
                    'id_option': new Date().getTime(),
533
                    'id_option': new Date().getTime(),
533
                    'title': title,
534
                    'title': title,
-
 
535
                    'answer':''
534
                });
536
                });
535
            }
537
            }
536
        });
538
        });
537
        return renderData(sections);
539
        return renderData(sections);
538
    }
540
    }