mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2025-02-17 17:01:12 -05:00
Fixing broken imports
This commit is contained in:
parent
0650f47071
commit
2a5ce50122
7 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
import Snap from 'snap';
|
||||
import Snap from 'snapsvg';
|
||||
|
||||
import ScratchJr from '../editor/ScratchJr';
|
||||
import SVGTools from './SVGTools';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import ScratchJr from '../editor/ui/ScratchJr';
|
||||
import ScratchJr from '../editor/ScratchJr';
|
||||
import BlockSpecs from '../editor/blocks/BlockSpecs';
|
||||
import Project from '../editor/ui/Project';
|
||||
import Undo from '../editor/ui/Undo';
|
||||
|
|
|
@ -12,7 +12,7 @@ import SVG2Canvas from '../utils/SVG2Canvas';
|
|||
import SVGImage from './SVGImage';
|
||||
import Camera from './Camera';
|
||||
import Events from '../utils/Events';
|
||||
import Rectangle from './geom/Rectangle';
|
||||
import Rectangle from '../geom/Rectangle';
|
||||
import {gn, isTablet, getIdFor} from '../utils/lib';
|
||||
/*
|
||||
Type of objects:
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
// data needs to be moved, etc. -TM
|
||||
|
||||
import ScratchJr from '../editor/ScratchJr';
|
||||
import SVG2Canvas from './SVG2Canvas';
|
||||
import SVG2Canvas from '../utils/SVG2Canvas';
|
||||
import SVGImage from './SVGImage';
|
||||
import SVGTools from './SVGTools';
|
||||
import Layer from './Layer';
|
||||
|
|
|
@ -11,7 +11,7 @@ import Layer from './Layer';
|
|||
import Transform from './Transform';
|
||||
import Rectangle from '../geom/Rectangle';
|
||||
import SVGTools from './SVGTools';
|
||||
import SVG2Canvas from './SVG2Canvas';
|
||||
import SVG2Canvas from '../utils/SVG2Canvas';
|
||||
import PaintAction from './PaintAction';
|
||||
import {getIdFor, gn, getIdForCamera, setCanvasSize, DEGTOR} from '../utils/lib';
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
//////////////////////////////////
|
||||
|
||||
import SVGTools from './SVGTools';
|
||||
import SVG2Canvas from './SVG2Canvas';
|
||||
import SVG2Canvas from '../utils/SVG2Canvas';
|
||||
import Paint from './Paint';
|
||||
import Vector from '../geom/Vector';
|
||||
import {gn, DEGTOR} from '../utils/lib';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import {isAndroid} from './lib';
|
||||
import {Sound} from './Sound';
|
||||
import Sound from './Sound';
|
||||
import {iOS} from '../iPad/iOS';
|
||||
|
||||
////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in a new issue