Bug 1333561 - Part 4: Rename box-model.js to deprecated-box-model.js. r=jdescottes

--HG--
rename : devtools/client/inspector/components/box-model.js => devtools/client/inspector/components/deprecated-box-model.js
This commit is contained in:
Gabriel Luong 2017-01-28 12:51:02 -05:00
Родитель f1d7bb9aba
Коммит 735686e810
3 изменённых файлов: 9 добавлений и 2 удалений

Просмотреть файл

@ -4,6 +4,13 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* THIS MODULE IS DEPRECATED.
*
* To continue any work related to the box model view, see the new react/redux
* implementation in devtools/client/inspector/layout/.
*/
"use strict";
const {Task} = require("devtools/shared/task");

Просмотреть файл

@ -5,7 +5,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DevToolsModules(
'box-model.js',
'deprecated-box-model.js',
'inspector-tab-panel.css',
'inspector-tab-panel.js',
)

Просмотреть файл

@ -26,7 +26,7 @@ const {
const StyleInspectorMenu = require("devtools/client/inspector/shared/style-inspector-menu");
const TooltipsOverlay = require("devtools/client/inspector/shared/tooltips-overlay");
const KeyShortcuts = require("devtools/client/shared/key-shortcuts");
const BoxModelView = require("devtools/client/inspector/components/box-model");
const BoxModelView = require("devtools/client/inspector/components/deprecated-box-model");
const clipboardHelper = require("devtools/shared/platform/clipboard");
const STYLE_INSPECTOR_PROPERTIES = "devtools/shared/locales/styleinspector.properties";