diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-05-14 07:32:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-14 07:32:59 +0200 |
commit | c1bd7e7fe7914fb1a73eb8c03b135dd657f9ce7c (patch) | |
tree | b5b8612d854ef6d62c48ccc540a2c3758a9b83ff /core/js/js.js | |
parent | ee5095c6f607c955958d8478ca511be6bc7a9665 (diff) | |
parent | 6b46d9f2e5069f3d3ad8ff0da9df752bf3c3ef3f (diff) | |
download | nextcloud-server-c1bd7e7fe7914fb1a73eb8c03b135dd657f9ce7c.tar.gz nextcloud-server-c1bd7e7fe7914fb1a73eb8c03b135dd657f9ce7c.zip |
Move OC.getCapabilities to the bundle and deprecate OC._capabilities,… (#15521)
Move OC.getCapabilities to the bundle and deprecate OC._capabilities,…
Diffstat (limited to 'core/js/js.js')
-rw-r--r-- | core/js/js.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/core/js/js.js b/core/js/js.js index 6a5c04fd2c6..7cccc66dc28 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -6,12 +6,6 @@ var OCP = Object.assign({}, window.OCP); */ Object.assign(window.OC, { /* jshint camelcase: false */ - /** - * Capabilities - * - * @type array - */ - _capabilities: window.oc_capabilities || null, theme: window.oc_defaults || {}, @@ -71,17 +65,6 @@ Object.assign(window.OC, { }, /** - * Returns the capabilities - * - * @return {array} capabilities - * - * @since 14.0 - */ - getCapabilities: function() { - return OC._capabilities; - }, - - /** * Loads translations for the given app asynchronously. * * @param {String} app app name |