diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2019-01-31 10:28:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-31 10:28:02 +0100 |
commit | 5c23f975d271f0689a86f220977954aed2777a09 (patch) | |
tree | 2a98f835b1a860c9036dbe1a6f777be9d58aa947 /core/js/js.js | |
parent | 85d6d7b87c82bfed9f1a494d55074daff0e2e3ee (diff) | |
parent | 6c47f09d60bddbb13007c9d7c6fb65306bed8776 (diff) | |
download | nextcloud-server-5c23f975d271f0689a86f220977954aed2777a09.tar.gz nextcloud-server-5c23f975d271f0689a86f220977954aed2777a09.zip |
Merge pull request #13937 from nextcloud/refactor/remove-unused-matchmedia
Remove unused OC._matchMedia helper
Diffstat (limited to 'core/js/js.js')
-rw-r--r-- | core/js/js.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/core/js/js.js b/core/js/js.js index de27ff7a926..bc4a8413e0b 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -754,20 +754,6 @@ Object.assign(window.OC, { }, /** - * Wrapper for matchMedia - * - * This is makes it possible for unit tests to - * stub matchMedia (which doesn't work in PhantomJS) - * @private - */ - _matchMedia: function(media) { - if (window.matchMedia) { - return window.matchMedia(media); - } - return false; - }, - - /** * Returns the user's locale as a BCP 47 compliant language tag * * @return {String} locale string |