Update repo with several changes

This commit is contained in:
Reynaldo Reyes
2016-04-27 20:34:27 -04:30
parent 38aaff259a
commit 0b3440abba
27 changed files with 316 additions and 146 deletions

View File

@@ -47,11 +47,12 @@
}
vm.subTotal = vm.positive + vm.negative;
});
if(((vm.positive/vm.subTotal)*100)<75){
if(((vm.positive/vm.subTotal)*100)>75){
vm.studentsPassed.push(value);
}else{
vm.students.push(value);
vm.flag = true;
}else{
vm.studentsPassed.push(value);
}
vm.positiveTotal = vm.positiveTotal + vm.positive;
vm.negativeTotal = vm.negativeTotal + vm.negative;