diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-05 12:48:31 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-05 13:15:23 +0100 |
commit | 31a1eb0c1f58f4cdfb012eeb7dff29be13fa9c76 (patch) | |
tree | f0bad64c88609e89d68ac2fa9cd8473c2fc0df00 /core/src/globals.js | |
parent | 0bb55f4ed3e0fe38951be929fb5183fd834f5a81 (diff) | |
download | nextcloud-server-31a1eb0c1f58f4cdfb012eeb7dff29be13fa9c76.tar.gz nextcloud-server-31a1eb0c1f58f4cdfb012eeb7dff29be13fa9c76.zip |
It is getURLParameter not getUrlParameter
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core/src/globals.js')
-rw-r--r-- | core/src/globals.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/globals.js b/core/src/globals.js index 560c492fdde..bfc2c086649 100644 --- a/core/src/globals.js +++ b/core/src/globals.js @@ -53,7 +53,7 @@ import OCP from './OCP/index' import OCA from './OCA/index' import escapeHTML from './Util/escapeHTML' import formatDate from './Util/format-date' -import getUrlParameter from './Util/get-url-parameter' +import getURLParameter from './Util/get-url-parameter' import humanFileSize from './Util/human-file-size' import relative_modified_date from './Util/relative-modified-date' @@ -79,7 +79,7 @@ window['OCP'] = OCP window['OCA'] = OCA window['escapeHTML'] = escapeHTML window['formatDate'] = formatDate -window['getUrlParameter'] = getUrlParameter +window['getURLParameter'] = getURLParameter window['humanFileSize'] = humanFileSize window['relative_modified_date'] = relative_modified_date |