Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Internal: Fixed missing deps and incorrect imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Sep 15, 2017
2 parents 8ac377e + 497d03a commit a465198
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/manual/position/position.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/* global document, setTimeout */

import { getOptimalPosition } from '@ckeditor/ckeditor5-utils/src/dom/position';
import { getOptimalPosition } from '../../../src/dom/position';

const boxes = document.querySelectorAll( '.test-box' );
const sources = document.querySelectorAll( '.source' );
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/scroll/scroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/* global document */

import { scrollViewportToShowTarget } from '@ckeditor/ckeditor5-utils/src/dom/scroll';
import { scrollViewportToShowTarget } from '../../../src/dom/scroll';

document.getElementById( 'scrollToBlue' ).addEventListener( 'click', () => {
const target = document.querySelector( '#target-blue .target' );
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/tickets/148/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/* global document */

import { getOptimalPosition } from '@ckeditor/ckeditor5-utils/src/dom/position';
import { getOptimalPosition } from '../../../../src/dom/position';

const source = document.querySelector( '.source' );
const target = document.querySelector( '.target' );
Expand Down

0 comments on commit a465198

Please sign in to comment.