diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-08 18:36:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-08 18:36:07 +0200 |
commit | 6994a2a87d691b3bf869219cb21ca2ae6625a8d5 (patch) | |
tree | ded5597c73ec361e01db50de467bbc63ae113777 /core | |
parent | 2a9e00635531a9b4269c9dc8fc97eeca1e6ce8cf (diff) | |
parent | d9783af7bdca7069d76a8e58c0d78d840a02715e (diff) | |
download | nextcloud-server-6994a2a87d691b3bf869219cb21ca2ae6625a8d5.tar.gz nextcloud-server-6994a2a87d691b3bf869219cb21ca2ae6625a8d5.zip |
Merge pull request #11679 from nextcloud/refactor/remove-ie8-apis
Remove IE8 APIs
Diffstat (limited to 'core')
-rw-r--r-- | core/js/js.js | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/core/js/js.js b/core/js/js.js index edde0ff390c..3f7ad233e31 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1,11 +1,3 @@ -/** - * Disable console output unless DEBUG mode is enabled. - * Add - * 'debug' => true, - * To the definition of $CONFIG in config/config.php to enable debug mode. - * The undefined checks fix the broken ie8 console - */ - /* global oc_isadmin */ var oc_debug; @@ -1972,17 +1964,6 @@ OC.Util = { }, /** - * Fix image scaling for IE8, since background-size is not supported. - * - * This scales the image to the element's actual size, the URL is - * taken from the "background-image" CSS attribute. - * - * @deprecated IE8 isn't supported since 9.0 - * @param {Object} $el image element - */ - scaleFixForIE8: function($el) {}, - - /** * Returns whether this is IE * * @return {bool} true if this is IE, false otherwise @@ -1992,16 +1973,6 @@ OC.Util = { }, /** - * Returns whether this is IE8 - * - * @deprecated IE8 isn't supported since 9.0 - * @return {bool} false (IE8 isn't supported anymore) - */ - isIE8: function() { - return false; - }, - - /** * Returns the width of a generic browser scrollbar * * @return {int} width of scrollbar |