Bläddra i källkod

Use new lat/lon and feed title attributes

master
Adrian Short 11 år sedan
förälder
incheckning
75259fefb9
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. +3
    -3
      app/helpers/posts_helper.rb

+ 3
- 3
app/helpers/posts_helper.rb Visa fil

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


Laddar…
Avbryt
Spara