2018-03-25 17:20:54 +00:00
|
|
|
<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
|
2018-03-25 17:30:42 +00:00
|
|
|
<!-- Load up polyfill service -->
|
|
|
|
<script src="https://cdn.polyfill.io/v1/polyfill.min.js"></script>
|
|
|
|
|
|
|
|
<%= render 'layouts/app_data' %>
|
|
|
|
<% if Settings.payment_provider.stripe_proprietary_v2_js %>
|
|
|
|
<script type="text/javascript" src="https://js.stripe.com/v2/"></script>
|
|
|
|
<% else %>
|
2019-12-04 22:22:48 +00:00
|
|
|
<%= javascript_pack_tag "page__stripe_wrapper" %>
|
2018-03-25 17:30:42 +00:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
Stripe.setPublishableKey("<%= Settings.payment_provider.stripe_public_key %>");
|
|
|
|
window._csrf = "<%= form_authenticity_token %>";
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<%= yield :javascripts %>
|
|
|
|
|
|
|
|
|
2019-12-04 22:22:48 +00:00
|
|
|
<script>
|
|
|
|
I18n = I18n || {}
|
|
|
|
I18n.defaultLocale = "<%= I18n.default_locale %>"
|
|
|
|
I18n.locale = "<%= I18n.locale %>"
|
|
|
|
</script>
|
2018-03-25 17:30:42 +00:00
|
|
|
|
|
|
|
<span data-parsley-namespace='parsley-'></span>
|
|
|
|
|
|
|
|
|
|
|
|
<% if current_role?([:nonprofit_associate, :nonprofit_admin, :super_admin]) && yield(:hide_nav_beacon) != 'true' %>
|
|
|
|
|
|
|
|
<%= render 'layouts/nav_beacon' %>
|
|
|
|
|
|
|
|
|
|
|
|
<% end %>
|