Skip to content

Commit 32ddd14

Browse files
committed
remove named export
1 parent c610f0a commit 32ddd14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/devextreme/js/viz/chart_components/zoom_and_pan.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const SCROLL_BAR_END_EVENT_NAME = 'dxc-scroll-end' + EVENTS_NS;
2424

2525
const GESTURE_TIMEOUT = 300;
2626
const MIN_DRAG_DELTA = 5;
27-
export const SCROLL_PREVENTION_TIMEOUT = 500;
27+
const SCROLL_PREVENTION_TIMEOUT = 500;
2828

2929
const _min = Math.min;
3030
const _max = Math.max;

packages/devextreme/testing/tests/DevExpress.viz.charts/zoomAndPan.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import $ from 'jquery';
22
import pointerMock from '../../helpers/pointerMock.js';
33

44
import 'viz/chart';
5-
import { SCROLL_PREVENTION_TIMEOUT } from '__internal/viz/chart_components/zoom_and_pan';
65

76
const CHART_SVG_SELECTOR = 'svg.dxc.dxc-chart';
87
const TOOLTIP_CLASS = 'dxc-tooltip';
8+
const SCROLL_PREVENTION_TIMEOUT = 500;
99

1010
const dataSource = (() => {
1111
const arr = [];

0 commit comments

Comments
 (0)