git mv modules/ui/info -> modules/ui/panels

This commit is contained in:
Bryan Housel
2017-06-29 23:04:57 -04:00
parent fdd6b329a8
commit 92a057bf3c
5 changed files with 3 additions and 3 deletions

View File

@@ -11,8 +11,8 @@ export * from './renderer/index';
export * from './services/index';
export * from './svg/index';
export * from './ui/fields/index';
export * from './ui/info/index';
export * from './ui/intro/index';
export * from './ui/panels/index';
export * from './ui/index';
export * from './util/index';
export * from './lib/index';

View File

@@ -1,9 +1,9 @@
import * as d3 from 'd3';
import { d3keybinding } from '../lib/d3.keybinding.js';
import { t } from '../util/locale';
import { svgIcon } from '../svg/index';
import { svgIcon } from '../svg';
import { uiCmd } from './cmd';
import { uiInfoPanels } from './info/index';
import { uiInfoPanels } from './panels/index';
export function uiInfo(context) {