mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Clean up source loading sequence, and rename test_function.js to helpers.js
This commit is contained in:
parent
4680283ce7
commit
2e55cd9871
2 changed files with 6 additions and 6 deletions
12
src/load.js
12
src/load.js
|
@ -37,17 +37,16 @@ var sources = [
|
|||
|
||||
'src/item/Item.js',
|
||||
'src/item/Group.js',
|
||||
'src/item/Layer.js',
|
||||
'src/item/Raster.js',
|
||||
'src/item/PlacedSymbol.js',
|
||||
'src/item/PathStyle.js',
|
||||
'src/path/PathItem.js',
|
||||
|
||||
'src/path/Segment.js',
|
||||
'src/path/Curve.js',
|
||||
|
||||
'src/item/Layer.js',
|
||||
'src/path/PathItem.js',
|
||||
'src/path/Path.js',
|
||||
'src/path/CompoundPath.js',
|
||||
|
||||
'src/path/Path.Constructors.js',
|
||||
|
||||
'src/color/Color.js',
|
||||
|
@ -63,8 +62,8 @@ var sources = [
|
|||
|
||||
'src/util/BlendMode.js',
|
||||
'src/util/CanvasProvider.js',
|
||||
'src/util/Numerical.js',
|
||||
'src/util/Events.js',
|
||||
'src/util/Numerical.js',
|
||||
'src/util/PaperScript.js'
|
||||
];
|
||||
|
||||
|
@ -72,7 +71,8 @@ var sources = [
|
|||
if (loadTests) {
|
||||
sources.push(
|
||||
'test/lib/qunit/qunit.js',
|
||||
'test/lib/test_functions.js',
|
||||
'test/lib/helpers.js',
|
||||
|
||||
'test/tests/Point.js',
|
||||
'test/tests/Size.js',
|
||||
'test/tests/Rectangle.js',
|
||||
|
|
Loading…
Reference in a new issue