Skip to content

Instantly share code, notes, and snippets.

@ballawala-lv
Created May 10, 2014 18:19
Show Gist options
  • Select an option

  • Save ballawala-lv/245655c59bb926c5671f to your computer and use it in GitHub Desktop.

Select an option

Save ballawala-lv/245655c59bb926c5671f to your computer and use it in GitHub Desktop.
var iter = -1,
colSize = 3;
angular.forEach(response.data, function(survey,i){
if(i % colSize === 0){
$scope.videoSurveys.push([]);
iter++;
}
$scope.videoSurveys[iter].push(survey);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment