Initial commit
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
/**
|
||||
* @fileOverview 完全版本。
|
||||
*/
|
||||
define([
|
||||
'../base',
|
||||
|
||||
// widgets
|
||||
'../widgets/filednd',
|
||||
'../widgets/filepaste',
|
||||
'../widgets/filepicker',
|
||||
'../widgets/image',
|
||||
'../widgets/queue',
|
||||
'../widgets/runtime',
|
||||
'../widgets/upload',
|
||||
'../widgets/validator',
|
||||
'../widgets/md5',
|
||||
|
||||
// runtimes
|
||||
// html5
|
||||
'../runtime/html5/blob',
|
||||
'../runtime/html5/dnd',
|
||||
'../runtime/html5/filepaste',
|
||||
'../runtime/html5/filepicker',
|
||||
'../runtime/html5/imagemeta/exif',
|
||||
'../runtime/html5/androidpatch',
|
||||
'../runtime/html5/image',
|
||||
'../runtime/html5/transport',
|
||||
'../runtime/html5/md5',
|
||||
|
||||
// flash
|
||||
'../runtime/flash/filepicker',
|
||||
'../runtime/flash/image',
|
||||
'../runtime/flash/transport',
|
||||
'../runtime/flash/blob',
|
||||
'../runtime/flash/md5'
|
||||
], function( Base ) {
|
||||
return Base;
|
||||
});
|
||||
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* @fileOverview 只有flash实现的文件版本。
|
||||
*/
|
||||
define([
|
||||
'../base',
|
||||
|
||||
// widgets
|
||||
'../widgets/filepicker',
|
||||
'../widgets/image',
|
||||
'../widgets/queue',
|
||||
'../widgets/runtime',
|
||||
'../widgets/upload',
|
||||
'../widgets/validator',
|
||||
|
||||
// runtimes
|
||||
|
||||
// flash
|
||||
'../runtime/flash/filepicker',
|
||||
'../runtime/flash/image',
|
||||
'../runtime/flash/blob',
|
||||
'../runtime/flash/transport'
|
||||
], function( Base ) {
|
||||
return Base;
|
||||
});
|
||||
@@ -0,0 +1,28 @@
|
||||
/**
|
||||
* @fileOverview 只有html5实现的文件版本。
|
||||
*/
|
||||
define([
|
||||
'../base',
|
||||
|
||||
// widgets
|
||||
'../widgets/filednd',
|
||||
'../widgets/filepaste',
|
||||
'../widgets/filepicker',
|
||||
'../widgets/image',
|
||||
'../widgets/queue',
|
||||
'../widgets/runtime',
|
||||
'../widgets/upload',
|
||||
'../widgets/validator',
|
||||
|
||||
// runtimes
|
||||
// html5
|
||||
'../runtime/html5/blob',
|
||||
'../runtime/html5/dnd',
|
||||
'../runtime/html5/filepaste',
|
||||
'../runtime/html5/filepicker',
|
||||
'../runtime/html5/imagemeta/exif',
|
||||
'../runtime/html5/image',
|
||||
'../runtime/html5/transport'
|
||||
], function( Base ) {
|
||||
return Base;
|
||||
});
|
||||
@@ -0,0 +1,30 @@
|
||||
/**
|
||||
* @fileOverview 没有图像处理的版本。
|
||||
*/
|
||||
define([
|
||||
'../base',
|
||||
|
||||
// widgets
|
||||
'../widgets/filednd',
|
||||
'../widgets/filepaste',
|
||||
'../widgets/filepicker',
|
||||
'../widgets/queue',
|
||||
'../widgets/runtime',
|
||||
'../widgets/upload',
|
||||
'../widgets/validator',
|
||||
|
||||
// runtimes
|
||||
// html5
|
||||
'../runtime/html5/blob',
|
||||
'../runtime/html5/dnd',
|
||||
'../runtime/html5/filepaste',
|
||||
'../runtime/html5/filepicker',
|
||||
'../runtime/html5/transport',
|
||||
|
||||
// flash
|
||||
'../runtime/flash/filepicker',
|
||||
'../runtime/flash/transport',
|
||||
'../runtime/flash/blob'
|
||||
], function( Base ) {
|
||||
return Base;
|
||||
});
|
||||
Reference in New Issue
Block a user