summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;