[1] in application.rhtml to include the popup code:
<%= javascript_include_tag 'popup.js' %>
<%= stylesheet_link_tag 'popup.css' %>
[2] in signup.rhtml to define the link/render it
...
<%= render :partial => 'shared/tos_popup' %>
[3] in _sidebar.rhtml to define the link/render it
...
<%= render :partial => 'shared/tos_popup' %>
[4] The Partial: shared/_tos_popup.rhtml
Terms of Service
...snip...
<%= javascript_tag "new Popup('tos_popup','tos_link', {position:'center'})" %>
|