Skip to content

Commit

Permalink
see cl 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Patzer committed Dec 11, 2018
1 parent 2eb2943 commit 1613572
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.1.0] - 2018-12-11

### Removed
- font awesome classes from frontend template

## [1.0.13] - 2018-11-12

### Fixed
Expand Down
Expand Up @@ -2,14 +2,14 @@
{{ renderedRowCount|raw }}

{% if(rowCount.value < 1 ) %}
<a href="{{ ajaxAddUrl }}" class="fa fa-plus add first btn btn-primary" title="{{ 'huh.multicolumneditor.add.default'|trans }}">
<a href="{{ ajaxAddUrl }}" class="add first" title="{{ 'huh.multicolumneditor.add.default'|trans }}">
<span>{{ 'huh.multicolumneditor.add.default'|trans }}</span>
</a>
{% else %}
<div class="{{ 'rows ' ~ (sortable|default() ? 'sortable' : '') | trim }}">
{% for iterator, row in rows %}
{% set index = ( iterator + 1 ) %}
<div class="{{ 'mce-row row row_' ~ index | trim }}" data-index="{{ index }}">
<div class="{{ 'mce-row row_' ~ index | trim }}" data-index="{{ index }}">
{% for field, widget in row %}
{% if widget.type == "hidden" %}
{{ widget.parse()|raw }}
Expand All @@ -20,16 +20,16 @@
{% endif %}
{% endfor %}
<div class="actions">
<a href="{{ ajaxAddUrl }}" class="fa fa-plus add btn btn-primary btn-xs" title="{{ 'huh.multicolumneditor.add.default'|trans }}">
<a href="{{ ajaxAddUrl }}" class="add" title="{{ 'huh.multicolumneditor.add.default'|trans }}">
<span>{{ 'huh.multicolumneditor.add.default'|trans }}</span>
</a>

<a href="{{ ajaxDeleteUrl }}" class="fa fa-times delete btn btn-primary btn-xs" title="{{ 'huh.multicolumneditor.delete.default'|trans }}">
<a href="{{ ajaxDeleteUrl }}" class="delete" title="{{ 'huh.multicolumneditor.delete.default'|trans }}">
<span>{{ 'huh.multicolumneditor.delete.default'|trans }}</span>
</a>

{% if sortable|default() %}
<a class="drag-handle fa fa-sort btn btn-primary btn-xs" href="{{ ajaxSortUrl }}" title="{{ 'huh.multicolumneditor.sort.default'|trans }}">
<a class="drag-handle" href="{{ ajaxSortUrl }}" title="{{ 'huh.multicolumneditor.sort.default'|trans }}">
<span>{{ 'huh.multicolumneditor.sort.default'|trans }}</span>
</a>
{% endif %}
Expand Down

0 comments on commit 1613572

Please sign in to comment.