Coming soon thumbnail height fix
This commit is contained in:
@@ -127,6 +127,7 @@
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
vertical-align: top;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
@media all and (max-width: 800px) {
|
||||
|
||||
@@ -106,10 +106,9 @@ Page.Home = new Class({
|
||||
timer,
|
||||
highest = 100;
|
||||
|
||||
images.each(function(img_container){
|
||||
img_container.getElements('img').addEvent('load', function(){
|
||||
var img = this,
|
||||
height = img.getSize().y;
|
||||
images.each(function(img){
|
||||
img.addEvent('load', function(){
|
||||
var height = img.getSize().y;
|
||||
if(!highest || highest < height){
|
||||
highest = height;
|
||||
if(timer) clearTimeout(timer);
|
||||
@@ -124,10 +123,8 @@ Page.Home = new Class({
|
||||
if(timer) clearTimeout(timer);
|
||||
timer = (function(){
|
||||
var highest = 100;
|
||||
images.each(function(img_container){
|
||||
var img = img_container.getElement('img');
|
||||
if(!img) return
|
||||
|
||||
images.each(function(img){
|
||||
img.setStyle('height', null);
|
||||
var height = img.getSize().y;
|
||||
if(!highest || highest < height)
|
||||
highest = height;
|
||||
|
||||
Reference in New Issue
Block a user