Skip to content

Commit

Permalink
Fixed linting errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
the-t-in-rtf committed Nov 23, 2016
1 parent 8202f87 commit 82f778d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/framework/core/js/ModelTransformationTransforms.js
Expand Up @@ -768,7 +768,7 @@ var fluid = fluid || fluid_2_0_0;
* @returns {string} - A stringified boolean representation of the value.
*/
fluid.transforms.booleanToString = function (value) {
return value ? "true": "false";
return value ? "true" : "false";
};

fluid.defaults("fluid.transforms.booleanToString", {
Expand Down
4 changes: 2 additions & 2 deletions tests/framework-tests/core/js/FluidIoCTests.js
Expand Up @@ -1480,7 +1480,7 @@ https://github.com/fluid-project/infusion/raw/master/Infusion-LICENSE.txt
targetEvent: null
}
}
},
}
}
});

Expand Down Expand Up @@ -1512,7 +1512,7 @@ https://github.com/fluid-project/infusion/raw/master/Infusion-LICENSE.txt
}
}
}
},
}
}
});

Expand Down

0 comments on commit 82f778d

Please sign in to comment.