-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(gridfield ui): display id and times used, replace context menu wi…
…th buttons, fix reorder issues
- Loading branch information
Showing
9 changed files
with
198 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') { | ||
if (typeof(console) !== 'undefined') { // eslint-disable-line no-console | ||
console.error('Class ss.i18n not defined'); // eslint-disable-line no-console | ||
} | ||
if (typeof(console) !== 'undefined') { // eslint-disable-line no-console | ||
console.error('Class ss.i18n not defined'); // eslint-disable-line no-console | ||
} | ||
} else { | ||
ss.i18n.addDictionary('en', { | ||
"GridField.AddAChild": "Unterelement hinzufügen", | ||
}); | ||
ss.i18n.addDictionary('en', { | ||
"PageSections.GridField.AddAChild": "Unterelement hinzufügen", | ||
"PageSections.GridField.Delete": "Löschen", | ||
"PageSections.GridField.DeleteAChild": "Endgültig löschen", | ||
"PageSections.GridField.RemoveAChild": "Entfernen", | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
<div class="col-treenav__inner"> | ||
$ButtonField | ||
<span class="col-treenav__title"> | ||
$Title | ||
</span> | ||
<div class="col-treenav__text"> | ||
<div class="col-treenav__classname"> | ||
$ClassName (ID: {$ID}, {$UsedCount}x) | ||
</div> | ||
<div class="col-treenav__title"> | ||
$Title | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<div class="col-actions__inner"> | ||
$AddButton | ||
$DeleteButton | ||
$EditButton | ||
</div> |