Index: remoting/webapp/crd/js/remoting.js |
diff --git a/remoting/webapp/crd/js/remoting.js b/remoting/webapp/crd/js/remoting.js |
index d86e6ec31f2f5120d0bc1d9a395afef7e04d6537..320019c93849544a08e0a239327e3e2aeb67e6ad 100644 |
--- a/remoting/webapp/crd/js/remoting.js |
+++ b/remoting/webapp/crd/js/remoting.js |
@@ -144,19 +144,6 @@ function pluginGotCopy_(event) { |
} |
/** |
- * @return {Object.<string, string>} The URL parameters. |
- */ |
-function getUrlParameters_() { |
- var result = {}; |
- var parts = window.location.search.substring(1).split('&'); |
- for (var i = 0; i < parts.length; i++) { |
- var pair = parts[i].split('='); |
- result[pair[0]] = decodeURIComponent(pair[1]); |
- } |
- return result; |
-} |
- |
-/** |
* Return the current time as a formatted string suitable for logging. |
* |
* @return {string} The current time, formatted as [mmdd/hhmmss.xyz] |