1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-11 09:14:58 +02:00

Bump version to 3.0.188

This commit is contained in:
Ryan Cramer
2021-10-29 14:58:38 -04:00
parent a19a224c20
commit e56ee2e7bf
4 changed files with 4 additions and 4 deletions

View File

@@ -79,7 +79,7 @@ class ProcessWire extends Wire {
* Reversion revision number
*
*/
const versionRevision = 187;
const versionRevision = 188;
/**
* Version suffix string (when applicable)

View File

@@ -214,7 +214,7 @@ function InputfieldRepeater($) {
var note = '';
if(pasteID > 0) {
note = "<div><i class='fa fa-paste fa-fw'></i>" + labels.copyInMemory + ' (id ' + pasteID + ')</div>';
note = "<div style='margin-top:8px'><i class='fa fa-paste fa-fw'></i>" + labels.copyInMemory + ' (id ' + pasteID + ')</div>';
}
var input =

File diff suppressed because one or more lines are too long

View File

@@ -779,7 +779,7 @@ class InputfieldRepeater extends Inputfield implements InputfieldItemList {
'remove' => $this->_x('Click to delete this item, or double-click to delete all', 'repeater-item-action'),
'removeAll' => $this->_x('Delete all items?', 'repeater-item-action'),
'toggle' => $this->_x('Click to turn item on/off, or double-click to open/collapse all items', 'repeater-item-action'),
'clone' => $this->_x('Clone this item?', 'repeater-item-action'),
'clone' => $this->_x('Clone/copy/paste actions', 'repeater-item-action'),
'settings' => $this->_x('Show settings?', 'repeater-item-action'),
'openAll' => $this->_x('Open all items?', 'repeater-item-action'),
'collapseAll' => $this->_x('Collapse all items?', 'repeater-item-action'),