diff options
Diffstat (limited to 'src/util/jquery.js')
| -rw-r--r-- | src/util/jquery.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/jquery.js b/src/util/jquery.js index dd0a7222..12a64fc6 100644 --- a/src/util/jquery.js +++ b/src/util/jquery.js @@ -1,2 +1,8 @@ +/** + * Binding of the global jQuery variable for use within React. + * + * This should be used instead of '$', to address ESLint warnings relating to undefined global variables. + */ const jQuery = window["$"]; + export default jQuery; |
