diff options
| author | Clement Ho <ClemMakesApps@gmail.com> | 2017-01-09 16:23:51 -0600 |
|---|---|---|
| committer | Clement Ho <ClemMakesApps@gmail.com> | 2017-01-09 16:23:51 -0600 |
| commit | e0e855b5f49bc8efc3ca69aa83ea28d6becb53cc (patch) | |
| tree | da79b8812daefecd68f10a3692674c17e42ae421 /app/assets/javascripts/lib/utils/common_utils.js.es6 | |
| parent | c0287e69c6717fe9de5ff0b804f952410e453ef8 (diff) | |
| download | gitlab-ce-e0e855b5f49bc8efc3ca69aa83ea28d6becb53cc.tar.gz | |
Fix code review suggestions
Diffstat (limited to 'app/assets/javascripts/lib/utils/common_utils.js.es6')
| -rw-r--r-- | app/assets/javascripts/lib/utils/common_utils.js.es6 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/javascripts/lib/utils/common_utils.js.es6 b/app/assets/javascripts/lib/utils/common_utils.js.es6 index 8aa78f407e5..3e2c75d3cc6 100644 --- a/app/assets/javascripts/lib/utils/common_utils.js.es6 +++ b/app/assets/javascripts/lib/utils/common_utils.js.es6 @@ -169,6 +169,8 @@ w.gl.utils.getParameterByName = (name) => { const url = window.location.href; name = name.replace(/[[\]]/g, '\\$&'); + // Finds the value associated to the name + // Example, state=open where state is the name and open is the value const regex = new RegExp(`[?&]${name}(=([^&#]*)|&|#|$)`); const results = regex.exec(url); if (!results) return null; |
