clipbucket/upload/styles/global/colors.html
Fawaz 8ec3779f31 Updated : photos ajax ajax/photos.php
Updated : upgrade_3.0.sql
Updated : photo_links method
Fixed : Memory exhausted error. Large images takes a lot of memory. So when CB_Resizer initializes we set memory limit to 256MB for current process
Renamed : includes/exif.php to exif_source.php
Updated : exif.php file to exif_source.php in functions.php
Fixed : exif data weird json encode thing
Updated : canon, nikon and olympus Makers
Added : exif.php, colors.html and exif.html in global folder
Updated : Few template files
2012-06-01 11:57:50 +00:00

18 lines
No EOL
768 B
HTML

<div id="{$photo.photo_id}-colors-modal" class="modal hide">
<div class="modal-header">
<h3>{lang code='Colors'}</h3>
</div>
<div class="modal-body">
<p>{lang code="Following colors does not represent all colors used in image. These are most common ones, according to our calculations."}</p>
{foreach $colors as $code=>$color}
<div class="pull-left cb-tooltip" rel="tooltip" title="{$color.color}">
<div class="color-item" data-color="{$code}" id="color-{$code}" style="background:{$color.color}; width:30px; height:30px;"></div>
</div>
{/foreach}
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal">Close</button>
</div>
</div>