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 /apps | |
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 'apps')
-rw-r--r-- | apps/files/js/mainfileinfodetailview.js | 1 | ||||
-rw-r--r-- | apps/files/js/newfilemenu.js | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/apps/files/js/mainfileinfodetailview.js b/apps/files/js/mainfileinfodetailview.js index 82860780d32..4a2067e09e5 100644 --- a/apps/files/js/mainfileinfodetailview.js +++ b/apps/files/js/mainfileinfodetailview.js @@ -187,7 +187,6 @@ } else { var iconUrl = this.model.get('icon') || OC.MimeType.getIconUrl('dir'); $iconDiv.css('background-image', 'url("' + iconUrl + '")'); - OC.Util.scaleFixForIE8($iconDiv); } this.$el.find('[title]').tooltip({placement: 'bottom'}); } else { diff --git a/apps/files/js/newfilemenu.js b/apps/files/js/newfilemenu.js index 109a2fed67e..01a183a33a7 100644 --- a/apps/files/js/newfilemenu.js +++ b/apps/files/js/newfilemenu.js @@ -210,7 +210,6 @@ uploadLabel: t('files', 'Upload file'), items: this._menuItems })); - OC.Util.scaleFixForIE8(this.$('.svg')); // Trigger upload action also with keyboard navigation on enter this.$el.find('[for="file_upload_start"]').on('keyup', function(event) { |