From 7236df1d0fe2b3538558627494c3ac80cc25cf05 Mon Sep 17 00:00:00 2001 From: Brent Bovenzi Date: Thu, 16 Jun 2022 11:06:49 -0400 Subject: [PATCH 1/2] remove internet explorer support --- airflow/www/static/js/ie.js | 22 ---------------------- airflow/www/templates/airflow/main.html | 3 --- 2 files changed, 25 deletions(-) delete mode 100644 airflow/www/static/js/ie.js diff --git a/airflow/www/static/js/ie.js b/airflow/www/static/js/ie.js deleted file mode 100644 index 507e9fb304219..0000000000000 --- a/airflow/www/static/js/ie.js +++ /dev/null @@ -1,22 +0,0 @@ -/*! - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -/** - * Internet Explore only scripts - */ -import 'url-search-params-polyfill'; diff --git a/airflow/www/templates/airflow/main.html b/airflow/www/templates/airflow/main.html index 94a5d4f77a0a0..ffebe05c00b1c 100644 --- a/airflow/www/templates/airflow/main.html +++ b/airflow/www/templates/airflow/main.html @@ -119,9 +119,6 @@ var csrfToken = '{{ csrf_token() }}'; $('time[title]').tooltip(); - From ed298fca0a45f895a02d8001137688ed7565b732 Mon Sep 17 00:00:00 2001 From: Brent Bovenzi Date: Thu, 16 Jun 2022 11:08:02 -0400 Subject: [PATCH 2/2] remove from webpack --- airflow/www/webpack.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/airflow/www/webpack.config.js b/airflow/www/webpack.config.js index bb26d630fef47..9fc9252f30ec0 100644 --- a/airflow/www/webpack.config.js +++ b/airflow/www/webpack.config.js @@ -64,7 +64,6 @@ const config = { flash: `${CSS_DIR}/flash.css`, gantt: [`${CSS_DIR}/gantt.css`, `${JS_DIR}/gantt.js`], graph: [`${CSS_DIR}/graph.css`, `${JS_DIR}/graph.js`], - ie: `${JS_DIR}/ie.js`, loadingDots: `${CSS_DIR}/loading-dots.css`, main: [`${CSS_DIR}/main.css`, `${JS_DIR}/main.js`], materialIcons: `${CSS_DIR}/material-icons.css`,