소스 검색

Use new lat/lon and feed title attributes

master
Adrian Short 11 년 전
부모
커밋
75259fefb9
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      app/helpers/posts_helper.rb

+ 3
- 3
app/helpers/posts_helper.rb 파일 보기

@@ -6,15 +6,15 @@ module PostsHelper
:imageURL => "%s%s/assets/layar-icons/tal-logo-100.png" % [ request.protocol, request.env['HTTP_HOST'] ],
:anchor => {
:geolocation => {
:lat => post.loc['lat'],
:lon => post.loc['lng'],
:lat => post.lat,
:lon => post.lon,
:alt => 0
}
},
:text => {
:title => decode_entities(post.title),
:description => clean_description(post.summary),
:footnote => "From #{post.feed.title}"
:footnote => "From #{post.feed_title}"
},
:actions => [
{


불러오는 중...
취소
저장