Skip to content

Commit

Permalink
Fixed spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Mar 10, 2015
1 parent 0034def commit edada70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/demo/d3TestPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ angular.module("bawApp.demo.d3", [])
}, function getSiteError() {
console.error("Retrieval of sites json failed");
}
).then(AudioRecording.getRecordingsForVisulisation)
).then(AudioRecording.getRecordingsForVisualization)
// get audio recording info for the current site
.then(
function (response) {
Expand Down
2 changes: 1 addition & 1 deletion src/app/visualize/visualize.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ angular
});

return $q.all([
AudioRecording.getRecordingsForVisulisation(siteIds),
AudioRecording.getRecordingsForVisualization(siteIds),
Project.getByIds(projectIds)
])
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/services/audioRecording.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ angular
return $http.post(filterUrl, query.toJSON());
};

resource.getRecordingsForVisulisation = function (siteIds) {
resource.getRecordingsForVisualization = function (siteIds) {
var query = QueryBuilder.create(function (q) {

// WARNING: potentially very large queries because paging is disabled
Expand Down

0 comments on commit edada70

Please sign in to comment.