Sha256: b248835833ab223b1a6c3df9fc244d94bc00519ca57454def634c18a7fd43807
Contents?: true
Size: 1.68 KB
Versions: 5
Compression:
Stored size: 1.68 KB
Contents
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /> <meta name="turbolinks-cache-control" content="no-cache"> <%= csrf_meta_tags %> <title><%= admin_page_title %></title> <!-- Get "Open Sans" font from Google --> <link href='//fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,600&subset=latin,cyrillic,greek,vietnamese' rel='stylesheet' type='text/css'> <%= stylesheet_link_tag 'spree/backend/all', media: 'all', data: {turbolinks_track: 'reload'} %> <%= javascript_include_tag 'spree/backend/all', data: {turbolinks_track: 'reload'} %> <%- if Rails.env.test? %> <style> /* A fixed position notification can intermittently be in the way of click targets. Capybara uses `Element.scrollIntoView()` internally, but this only scrolls as far as it must, which means a bottom of page notification will obstruct interactions. */ .flash-wrapper { position: static; } /* Capybara doesn't know how to use dropdowns */ .tabs-dropdown ul { display: block !important; position: static; } </style> <%- elsif Rails.env.development? %> <style> .translation_missing { background: white; color: #C60F13; } </style> <%= javascript_tag do %> Spree.ready(function(){ $('.translation_missing').tooltip(); }); <% end %> <%- end %> <%= render "spree/admin/shared/js_locale_data" %> <%= javascript_tag do -%> Spree.accessTokenKeys = ['access-token']; Spree.accessTokenData = {}; <% if try_spree_current_user.present? %> Spree.accessTokenData = <%= raw(try_spree_current_user.try(:create_new_auth_token).try(:to_json)) %>; <% end %> Spree.env = '<%= Rails.env %>'; <% end %> <%= yield :head %>
Version data entries
5 entries across 5 versions & 1 rubygems