mujma: REFACTORING: Removed apostrophes.

(merged from branches/gsoc)


git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@42065 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2007-09-16 02:35:30 +00:00
parent 5c89bbcb58
commit 45a9105a28

View File

@ -122,14 +122,14 @@ TinyMCEImageEnhancement.prototype = {
if($('FolderID') != null) {
this.upload = new Upload(
{
'fileTypes': '*.jpeg;*.jpg;*.jpe;*.png;*.gif;',
'fileTypesDescription' : 'Image files',
'fileUploadLimit' : '100',
'beginUploadOnQueue' : true,
'buildUI' : this.buildUI.bind(this),
'fileQueued' : this.uploadFileQueuedCallback.bind(this),
'fileComplete' : this.uploadFileCompleteCallback.bind(this),
'queueComplete' : this.uploadQueueCompleteCallback.bind(this)
fileTypes : '*.jpeg;*.jpg;*.jpe;*.png;*.gif;',
fileTypesDescription : 'Image files',
fileUploadLimit : '100',
beginUploadOnQueue : true,
buildUI : this.buildUI.bind(this),
fileQueued : this.uploadFileQueuedCallback.bind(this),
fileComplete : this.uploadFileCompleteCallback.bind(this),
queueComplete : this.uploadQueueCompleteCallback.bind(this)
}
);
}