mujma: BUGFIX: Added comments for better description of files usage. Trac ticket: http://support.silverstripe.com/gsoc/ticket/107. (merged from gsoc branch, r42515)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@42986 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Andrew O'Neil 2007-10-02 23:08:38 +00:00
parent 6aed530816
commit 04bc8e6b77
3 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,7 @@
/**
* If one of methods is not commented look for comment in Upload.js
* This class is used for upload in asset part.
* If one of methods is not commented look for comment in Upload.js
*/
CMSMain_upload = Class.create();
CMSMain_upload.prototype = {

View File

@ -1,4 +1,5 @@
/**
* This class is used for upload in TinyMCE editor.
* If one of methods is not commented look for comment in Upload.js.
*/
TinyMCEImageEnhancement = Class.create();

View File

@ -1,3 +1,10 @@
/*
This class is wrapper for SWFUpload class.
If you want use SWFUpload, please use this class becuase it will take care of configuration
error handling and other things.
*/
Upload = Class.create();
Upload.prototype = {