1. Список говнокодов пользователя Andruxa

    Всего: 1

  2. JavaScript / Говнокод #18422

    +143

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    if($scope.model.table){ 
    
                if($scope.model.table.cells == null){
                    if($scope.model.table.cols){
                        $scope.model.table.cells = $scope.model.table.cols;
                    }
                }
                if($scope.model.table.heads && $scope.model.table.cols == null){
                    $scope.model.table.cols = [];
                    $scope.model.table.heads.forEach(function(head){
                        $scope.model.table.cols.push({head:head});
                    });
                    $scope.model.table.cells.forEach(function(cell, i){
                        $scope.model.table.cols[i] = {cell:cell};
                    });
                }
            }

    Andruxa, 30 Июня 2015

    Комментарии (0)