// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

jQuery(function(){
  // 精华链接
  var digestLinks = jQuery("*[id^=t_][id$=_digest]");
  digestLinks.each(function(index,obj){
    var topicID = obj.id.match(/_(\d+?)_/)[1];
    jQuery(obj)
      .after("&nbsp;<a href='/ext/fedex_topics/new?topic_id=" + topicID + "'>快递</a>")
      .after("&nbsp;<a href='/ext/topic_recommends/new?topic_id=" + topicID + "'>推荐</a>");
  });
});
