parent
6c6f9bb982
commit
2ca42ea5e6
4 changed files with 22 additions and 18 deletions
|
|
@ -7,7 +7,7 @@
|
|||
* Don't display mail-related view content if it is disabled in the pod's config [#7190](https://github.com/diaspora/diaspora/pull/7190)
|
||||
* Use typeahead.js from rails-assets.org [#7192](https://github.com/diaspora/diaspora/pull/7192)
|
||||
* Refactor ShareVisibilitesController to use PostService [#7196](https://github.com/diaspora/diaspora/pull/7196)
|
||||
* Unify desktop and mobile head elements [#7194](https://github.com/diaspora/diaspora/pull/7194)
|
||||
* Unify desktop and mobile head elements [#7194](https://github.com/diaspora/diaspora/pull/7194) [#7209](https://github.com/diaspora/diaspora/pull/7209)
|
||||
* Refactor flash messages on ajax errors for comments, likes, reshares and aspect memberships [#7202](https://github.com/diaspora/diaspora/pull/7202)
|
||||
* Only require AWS-module for fog [#7201](https://github.com/diaspora/diaspora/pull/7201)
|
||||
* Only show community spotlight links on the contacts page if community spotlight is enabled [#7213](https://github.com/diaspora/diaspora/pull/7213)
|
||||
|
|
|
|||
|
|
@ -12,9 +12,6 @@
|
|||
/ All others
|
||||
%link{rel: "shortcut icon", href: image_path("favicon.png")}
|
||||
|
||||
= chartbeat_head_block
|
||||
= include_mixpanel
|
||||
|
||||
- if rtl?
|
||||
= stylesheet_link_tag :rtl, media: "all"
|
||||
|
||||
|
|
@ -22,9 +19,12 @@
|
|||
= stylesheet_link_tag :poltergeist_disable_transition, media: "all"
|
||||
|
||||
= jquery_include_tag
|
||||
= include_gon(camel_case: true, nonce: content_security_policy_nonce(:script))
|
||||
= yield(:javascript)
|
||||
|
||||
= chartbeat_head_block
|
||||
= csrf_meta_tag
|
||||
= current_user_atom_tag
|
||||
= include_mixpanel
|
||||
|
||||
= yield(:head)
|
||||
|
||||
= csrf_meta_tag
|
||||
= include_gon(camel_case: true, nonce: content_security_policy_nonce(:script))
|
||||
|
|
|
|||
|
|
@ -5,18 +5,20 @@
|
|||
!!!
|
||||
%html{lang: I18n.locale.to_s, dir: (rtl? ? "rtl" : "ltr")}
|
||||
%head{prefix: og_prefix}
|
||||
= render "head"
|
||||
%meta{name: "viewport", content: "width=device-width, initial-scale=1"}/
|
||||
|
||||
- content_for :javascript do
|
||||
= old_browser_js_support
|
||||
|
||||
<!--[if IE]>
|
||||
= javascript_include_tag :ie
|
||||
<![endif]-->
|
||||
|
||||
= javascript_include_tag :main, :templates
|
||||
= load_javascript_locales
|
||||
|
||||
= render "head"
|
||||
= include_color_theme
|
||||
= old_browser_js_support
|
||||
|
||||
<!--[if IE]>
|
||||
= javascript_include_tag :ie
|
||||
<![endif]-->
|
||||
|
||||
= javascript_include_tag :main, :templates
|
||||
= load_javascript_locales
|
||||
= translation_missing_warnings
|
||||
|
||||
%body{class: "page-#{controller_name} action-#{action_name}"}
|
||||
|
|
|
|||
|
|
@ -5,6 +5,10 @@
|
|||
!!!
|
||||
%html{lang: I18n.locale.to_s, dir: (rtl? ? "rtl" : "ltr")}
|
||||
%head{prefix: og_prefix}
|
||||
- content_for :javascript do
|
||||
= javascript_include_tag "mobile/mobile"
|
||||
= load_javascript_locales
|
||||
|
||||
= render "head"
|
||||
= include_color_theme "mobile"
|
||||
|
||||
|
|
@ -30,7 +34,5 @@
|
|||
= t("streams.activity.title")
|
||||
= yield
|
||||
|
||||
= javascript_include_tag "mobile/mobile"
|
||||
= load_javascript_locales
|
||||
= include_chartbeat
|
||||
= include_mixpanel_guid
|
||||
|
|
|
|||
Loading…
Reference in a new issue