From 2181e6ee5cc1395274a8e71a713d024f215156a3 Mon Sep 17 00:00:00 2001 From: Liza Katz Date: Mon, 1 Jul 2019 12:13:34 +0300 Subject: [PATCH] delete unused table_info (#39978) --- src/legacy/ui/public/table_info/index.js | 20 ----------- .../ui/public/table_info/table_info.html | 6 ---- src/legacy/ui/public/table_info/table_info.js | 36 ------------------- 3 files changed, 62 deletions(-) delete mode 100644 src/legacy/ui/public/table_info/index.js delete mode 100644 src/legacy/ui/public/table_info/table_info.html delete mode 100644 src/legacy/ui/public/table_info/table_info.js diff --git a/src/legacy/ui/public/table_info/index.js b/src/legacy/ui/public/table_info/index.js deleted file mode 100644 index 549db9c5f58f8..0000000000000 --- a/src/legacy/ui/public/table_info/index.js +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Licensed to Elasticsearch B.V. under one or more contributor - * license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright - * ownership. Elasticsearch B.V. 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. - */ - -import './table_info'; diff --git a/src/legacy/ui/public/table_info/table_info.html b/src/legacy/ui/public/table_info/table_info.html deleted file mode 100644 index a4e0eb633618c..0000000000000 --- a/src/legacy/ui/public/table_info/table_info.html +++ /dev/null @@ -1,6 +0,0 @@ -
-
-
diff --git a/src/legacy/ui/public/table_info/table_info.js b/src/legacy/ui/public/table_info/table_info.js deleted file mode 100644 index 1d39dcdfe6339..0000000000000 --- a/src/legacy/ui/public/table_info/table_info.js +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Licensed to Elasticsearch B.V. under one or more contributor - * license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright - * ownership. Elasticsearch B.V. 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. - */ - -import { uiModules } from '../modules'; -import template from './table_info.html'; - -const app = uiModules.get('kibana'); - -app.directive('tableInfo', function () { - return { - restrict: 'E', - replace: true, - template: template, - transclude: true, - controllerAs: 'tableInfo', - bindToController: true, - controller: class TableInfoController { - } - }; -});