BUGFIX Changed references from "Image" to "FolderImages"

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@79168 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2009-06-15 03:19:44 +00:00
parent 5daa1033d9
commit 09128f09b2
2 changed files with 4 additions and 4 deletions

View File

@ -601,7 +601,7 @@ iframe {
#contentPanel input#Form_EditorToolbarFlashForm_Height {
width: 30px;
}
#Form_EditorToolbarImageForm #Image,
#Form_EditorToolbarImageForm #FolderImages,
#Form_EditorToolbarFlashForm #Flash {
margin: 5px;
}
@ -640,7 +640,7 @@ iframe {
outline: 3px solid #E9E9E9;
}
#Form_EditorToolbarImageForm #Image img,
#Form_EditorToolbarImageForm #FolderImages img,
#Form_EditorToolbarFlashForm #Flash img {
border: 2px solid #e4e3e3;
}
@ -648,7 +648,7 @@ iframe {
margin: 2px 5px 0 0;
text-align: right;
}
#contentPanel #Image a.selectedImage img,
#contentPanel #FolderImages a.selectedImage img,
#contentPanel #Flash a.selectedFlash img {
border: 2px solid #222;
}

View File

@ -1,7 +1,7 @@
ThumbnailStripField = Class.create();
// We do this instead of div.thumbnailstrip for efficiency. It means that ThumbnailStripField can only be used in the
// CMS toolbar
ThumbnailStripField.applyTo('#Image');
ThumbnailStripField.applyTo('#FolderImages');
ThumbnailStripField.applyTo('#Flash');
ThumbnailStripField.prototype = {