]> git.openstreetmap.org Git - rails.git/commitdiff
Close html <source> tags
authorAndrew Zaborowski <andrew.zaborowski@intel.com>
Sun, 4 Oct 2015 00:13:57 +0000 (02:13 +0200)
committerAndrew Zaborowski <balrogg@gmail.com>
Sun, 4 Oct 2015 00:13:57 +0000 (02:13 +0200)
Apparently this unclosed tag didn't break rendering but judging from the
fact that this was the only unclosed tag and was introduced recently,
it probably wasn't intended.  The unit tests did expect the tag to be
closed.

app/views/layouts/_flash.html.erb
app/views/layouts/_header.html.erb

index dc458fdcf2d9b194948b43f367e76c9c59f25671..8b04dac91d465f44844ffe7145519c9375c70732 100644 (file)
@@ -1,7 +1,7 @@
 <% if flash[:error] %>
   <div class="flash error">
     <picture>
-      <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml">
+      <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
       <%= image_tag("notice.png", :srcset => image_path("notice.svg"), :class => "small_icon", :border => 0) %>
     </picture>
     <div class="message"><%= flash[:error] %></div>
@@ -11,7 +11,7 @@
 <% if flash[:warning] %>
   <div class="flash warning">
     <picture>
-      <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml">
+      <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
       <%= image_tag("notice.png", :srcset => image_path("notice.svg"), :class => "small_icon", :border => 0) %>
     </picture>
     <div class="message"><%= flash[:warning] %></div>
@@ -21,7 +21,7 @@
 <% if flash[:notice] %>
   <div class="flash notice">
     <picture>
-      <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml">
+      <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
       <%= image_tag("notice.png", :srcset => image_path("notice.svg"), :class => "small_icon", :border => 0) %>
     </picture>
     <div class="message"><%= flash[:notice] %></div>
index f5cfd205bc1125f79a2b8f86d052d9f04be52a8d..116cf227d9ad9b382e8a29265a7bdae4d05844bf 100644 (file)
@@ -2,7 +2,7 @@
   <h1>
     <a href="<%= root_path %>" class="geolink">
       <picture>
-        <source srcset="<%= image_path "osm_logo.svg" %>" type="image/svg+xml">
+        <source srcset="<%= image_path "osm_logo.svg" %>" type="image/svg+xml"></source>
         <%= image_tag "osm_logo.png", :srcset => image_path("osm_logo.svg"), :alt => t('layouts.logo.alt_text'), :class => 'logo' %>
       </picture>
       <%= t 'layouts.project_name.h1' %>