$(document).ready(function(){
  // Title

  var ruler = $("#ruler");
  ruler.width($(".description").width());
  var height = 34;
  if ($(".description").hasClass("movies")) {
    if ($(".description").hasClass("m")) height = 17;
  } else {
    if ($(".description").hasClass("s") || $(".description").hasClass("r")) height = 17;
  }
  $(".description .title").css('height', height + 'px');
//  $(".description .title-link").each(function(){
//    var text = $(this).text();
//    ruler.text(text);
//    var i = text.length;
//    if (ruler.height() > height) {
//      while(ruler.height() > height) {
//        ruler.text(text.substr(0, i--) + "...");
//      }
//      $(this).text(text.substr(0, i) + "...");
//    }
//
//  });
  //Size
});
