Class: FacebookWidget

Inherits:
Widget
  • Object
show all
Defined in:
app/models/facebook_widget.rb

Instance Method Summary collapse

Instance Method Details

#facebook_dataObject



12
13
14
15
16
17
18
19
20
21
22
# File 'app/models/facebook_widget.rb', line 12

def facebook_data
  {
    href: url,
    width: width,
    height: height,
    hide_cover: hide_cover == "Yes" ? 'true' : 'false',
    show_facepile: show_facepile == "Yes" ? 'true' : 'false',
    show_posts: show_posts == "Yes" ? 'true' : 'false',
    hide_cta: hide_cta == "Yes" ? 'true' : 'false'
  }
end