Hi wescomputer,
1. Open file "CuteSoft_Client\Gallery\Layout\Explorer\Code.js".
2. Find section below
- if(!this._selectedcategory)
- {
- this.dng_btn_up.style.display="none";
- this.Browser.FindElement("dng_path").innerHTML="/";
- var folderthumb=this.Browser.GetTheme("Images/directory-thumbnail.png");
- for(var i=0;i<this._categories.length;i++)
- {
- var c=this._categories[i];
- var div=this.CreateItemDiv(c,null,(c.Title||GalleryLocalize.DEFAULTCATEGORYNAME)+" ("+c.Photos.length+")",folderthumb,128,128);
- this.AttachItemEvent(container.appendChild(div));
- }
- }
3. Change to
- if(!this._selectedcategory)
- {
- this.dng_btn_up.style.display="none";
- this.Browser.FindElement("dng_path").innerHTML="/";
- for(var i=0;i<this._categories.length;i++)
- {
- var c=this._categories[i];
- var folderthumb=this.Browser.GetTheme("Images/directory-thumbnail.png");
-
- if(c.Photos.length!=0)
- {
- var div=this.CreateItemDiv(c,null,(c.Title||GalleryLocalize.DEFAULTCATEGORYNAME)+" ("+c.Photos.length+")",c.Photos[0].Thumbnail.substr((c.Photos[0].Thumbnail.indexOf("/",2)+1),c.Photos[0].Thumbnail.length),128,128);
- }
- else
- {
- var div=this.CreateItemDiv(c,null,(c.Title||GalleryLocalize.DEFAULTCATEGORYNAME)+" ("+c.Photos.length+")",folderthumb,128,128);
- }
- this.AttachItemEvent(container.appendChild(div));
- }
- }
Regards,
Ken