Skip to content

Commit

Permalink
[refs codefordurham#348] Fixes variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
vrocha committed Jul 6, 2016
1 parent f3c9fc7 commit 89da018
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/app/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var app = angular.module("schoolsApp", [
va app = angular.module("schoolsApp", [
'ngRoute',
'SchoolsApp.directives',
'SchoolsApp.geoDecoder',
Expand Down Expand Up @@ -141,9 +141,9 @@ angular.module('SchoolsApp.controllers', ["leaflet-directive", "ngSanitize"])
var display;
if (profile.after_care_offered && profile.before_care_offered && profile.after_care_offered != noAfterCareMessage && profile.before_care_offered != noBeforeCareMessage) {
display = 'This school offers before and after care.';
} else if (profile.after_care_offered && profile.after_care_offered != noAfterCareOffered) {
} else if (profile.after_care_offered && profile.after_care_offered != noAfterCareMessage) {
display = 'This school offers after care and does not offer before care.';
} else if (profile.before_care_offered && profile.before_care_offered != noBeforeCareOffered) {
} else if (profile.before_care_offered && profile.before_care_offered != noBeforeCareMessage) {
display = "This school offers before care and does not offer after care.";
} else {
display = "This school does not offer extended care.";
Expand Down

0 comments on commit 89da018

Please sign in to comment.