Skip to content

Instantly share code, notes, and snippets.

@Ravenna
Created March 3, 2015 00:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ravenna/53139e8ed53274d52e1c to your computer and use it in GitHub Desktop.
Save Ravenna/53139e8ed53274d52e1c to your computer and use it in GitHub Desktop.
var lastTop;
$('a.ai1ec-event-container').each(function(i){
var top = $(this).css('top');
console.log(top);
var index;
if(top = lastTop){
console.log('exception');
var mulitple = index * 200;
$(this).css('margin-left', mulitple+'px');
}
lastTop = top;
console.log('lastTop: ', lastTop);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment