summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2017-01-09 17:41:53 -0600
committerClement Ho <ClemMakesApps@gmail.com>2017-01-09 17:41:53 -0600
commit757bc8ecf43159243d9a0f45f27844f6572e60ac (patch)
treee7507084c6d1206590352acc4320a37b484214bb
parente0e855b5f49bc8efc3ca69aa83ea28d6becb53cc (diff)
downloadgitlab-ce-757bc8ecf43159243d9a0f45f27844f6572e60ac.tar.gz
Remove duplicate method
-rw-r--r--app/assets/javascripts/lib/utils/common_utils.js.es618
1 files changed, 0 insertions, 18 deletions
diff --git a/app/assets/javascripts/lib/utils/common_utils.js.es6 b/app/assets/javascripts/lib/utils/common_utils.js.es6
index 3e2c75d3cc6..0c6a3cc3170 100644
--- a/app/assets/javascripts/lib/utils/common_utils.js.es6
+++ b/app/assets/javascripts/lib/utils/common_utils.js.es6
@@ -130,22 +130,6 @@
return window.location.search.slice(1).split('&');
};
- gl.utils.getParameterByName = function(name) {
- var url = window.location.href;
- var param = name.replace(/[[\]]/g, '\\$&');
- var regex = new RegExp('[?&]' + param + '(=([^&#]*)|&|#|$)');
- var results = regex.exec(url);
-
- if (!results) {
- return null;
- }
-
- if (!results[2]) {
- return '';
- }
- return decodeURIComponent(results[2].replace(/\+/g, ' '));
- };
-
gl.utils.isMetaKey = function(e) {
return e.metaKey || e.ctrlKey || e.altKey || e.shiftKey;
};
@@ -169,8 +153,6 @@
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;