diff options
author | Jacob Schatz <jschatz1@gmail.com> | 2017-08-09 16:40:23 -0400 |
---|---|---|
committer | Jacob Schatz <jschatz1@gmail.com> | 2017-08-09 16:40:23 -0400 |
commit | 7a8a8ec12335419c6d423b852ce92c1ed7759166 (patch) | |
tree | 00de172ccd91f0a695b2b4ffbd5b55e2a1803c0f | |
parent | 7896ffde7840aa8be5637e44f54488dcabcf1d3c (diff) | |
download | gitlab-ce-7a8a8ec12335419c6d423b852ce92c1ed7759166.tar.gz |
Fix typo.
-rw-r--r-- | doc/development/fe_guide/style_guide_js.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/fe_guide/style_guide_js.md b/doc/development/fe_guide/style_guide_js.md index 32224e6ff48..6a660ff1788 100644 --- a/doc/development/fe_guide/style_guide_js.md +++ b/doc/development/fe_guide/style_guide_js.md @@ -514,7 +514,7 @@ A forEach will cause side effects, it will be mutating the array being iterated. ### The Javascript/Vue Accord The goal of this accord is to make sure we are all on the same page. -1. When writing Vue, you may not use jQuery in your application. You may query the DOM 1 time while bootstrapping your application to grab data attributes using `dataset`. Using jQuery with Vue can be useful, however it is impossible to come up with a specific rule of proper usage within Vue, and can always . +1. When writing Vue, you may not use jQuery in your application. You may query the DOM 1 time while bootstrapping your application to grab data attributes using `dataset`. Using jQuery with Vue can be useful, however it is impossible to come up with a specific rule of proper usage within Vue. 1. You may have a temporary but immediate need to create technical debt by writing code that does not follow our standards, to be refactored later. You may do this as long as: 1. The technical debt is handled in the next release by you. |