Skip to content

Commit

Permalink
fixed jsint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Jul 18, 2014
1 parent 8844505 commit bda056c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/services/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
*/
mediaResource.formatPaths = function formatPaths(mediaItem, audioEventId) {
// HACK: add audioEventId onto every path until Media API correctly returns resource paths!
var hackString = audioEventId != undefined ? "&audioEventId=" + audioEventId.toString() : "";
var hackString = audioEventId !== undefined ? "&audioEventId=" + audioEventId.toString() : "";

var imgKeys = Object.keys(mediaItem.availableImageFormats);
if (imgKeys.length > 1) {
Expand Down

0 comments on commit bda056c

Please sign in to comment.