W3C validation
This commit is contained in:
parent
232e59069f
commit
4d576c9dc7
6
Gemfile
6
Gemfile
@ -35,9 +35,3 @@ end
|
||||
|
||||
# Dav4Rack
|
||||
gem 'ox'
|
||||
|
||||
if Dir.exist?(File.expand_path('../../easyproject/easy_plugins/easy_extensions', __FILE__))
|
||||
group :default, :rys do
|
||||
gem 'dmsf_easy_query', git: 'git@git.easy.cz:platform-2.0/features/dmsf_easy_query.git', branch: 'master'
|
||||
end
|
||||
end
|
||||
@ -124,7 +124,7 @@
|
||||
<% end %>
|
||||
<% end %>
|
||||
</td>
|
||||
<td id="dmsf_position" class="none"><%= position %></td>
|
||||
<td class="dmsf_position none"><%= position %></td>
|
||||
<td class="none">0</td>
|
||||
<td class="none"><%= subfolder.modified.to_i if subfolder %></td>
|
||||
<td class="none">0</td>
|
||||
|
||||
@ -32,8 +32,8 @@
|
||||
<% cfs = CustomField.where(:type => 'DmsfFileRevisionCustomField').order(:position) %>
|
||||
<% columns.concat(cfs.map{ |c| c.name }) %>
|
||||
<% selected_columns = DmsfFolder::DEFAULT_COLUMNS if selected_columns.blank? %>
|
||||
<% columns.each do |column| %>
|
||||
<%= check_box_tag('settings[dmsf_columns][]', column, selected_columns.include?(column)) %>
|
||||
<% columns.each_with_index do |column, i| %>
|
||||
<%= check_box_tag('settings[dmsf_columns][]', column, selected_columns.include?(column), id: "dmsf_column_#{i}") %>
|
||||
<%= h column.capitalize %>
|
||||
<br/>
|
||||
<% end %>
|
||||
|
||||
@ -136,7 +136,7 @@ function dmsfExpandRows(EL, parentRow, url) {
|
||||
idnt = result[1];
|
||||
}
|
||||
|
||||
var pos = $(parentRow).find('#dmsf_position').text();
|
||||
var pos = $(parentRow).find('.dmsf_position').text();
|
||||
|
||||
$.ajax({
|
||||
url: url,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user