Browse Source

Use new lat/lon and feed title attributes

master
Adrian Short 11 years ago
parent
commit
75259fefb9
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      app/helpers/posts_helper.rb

+ 3
- 3
app/helpers/posts_helper.rb View File

@@ -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 => [
{


Loading…
Cancel
Save