Skip to content

Commit

Permalink
Fixed a bug with transfer class check/rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
Halsted Larsson committed Apr 2, 2019
1 parent 35c868e commit a512ede
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions site-root/baxter/scripts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,15 @@ function getCourseDivision(course){
return 4;
}
if(typeof(course["Transfer"]) !== 'undefined'
&& course["Transfer"] != null
&& course["Transfer"].length > 0){
return 0;
}

return 1;
}
if(typeof(course["Transfer"]) !== 'undefined'
&& course["Transfer"] != null
&& course["Transfer"].length > 0){
return 0;
}
Expand Down

0 comments on commit a512ede

Please sign in to comment.