diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-12-03 09:15:31 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-12-03 09:15:31 +0000 |
commit | 48f72a3d15def45352c0be4e7f27b2ba3852f949 (patch) | |
tree | 728515a1a7a51bac340ed908582780411e4f4a07 /app/views/auth_sources | |
parent | 3e86a2ab52bcadea6ed92522a3d3e88b6dc4aa30 (diff) | |
download | redmine-48f72a3d15def45352c0be4e7f27b2ba3852f949.tar.gz redmine-48f72a3d15def45352c0be4e7f27b2ba3852f949.zip |
Use css pseudo-classes instead "odd", "even" classes (#15361).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@16050 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/auth_sources')
-rw-r--r-- | app/views/auth_sources/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth_sources/index.html.erb b/app/views/auth_sources/index.html.erb index ecde2bf95..7a0ffa59d 100644 --- a/app/views/auth_sources/index.html.erb +++ b/app/views/auth_sources/index.html.erb @@ -14,7 +14,7 @@ </tr></thead> <tbody> <% for source in @auth_sources %> - <tr id="auth-source-<%= source.id %>" class="<%= cycle("odd", "even") %>"> + <tr id="auth-source-<%= source.id %>"> <td class="name"><%= link_to(source.name, :action => 'edit', :id => source)%></td> <td><%= source.auth_method_name %></td> <td><%= source.host %></td> |