Skip to content

Commit

Permalink
Fixed inconsistency in the way selectized fields would be rendered (f…
Browse files Browse the repository at this point in the history
…ixes #692)
  • Loading branch information
w00fz committed Jul 12, 2016
1 parent 2016405 commit 74fa8f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* Fixed an issue that prevented removing more than one page, in the pages listng [#672](https://github.com/getgrav/grav-plugin-admin/issues/672)
* Fixed toggleables in lists that were always loading as checked even when not stored [#688](https://github.com/getgrav/grav-plugin-admin/issues/688)
* Fixed Fullscreen tooltip in Editor displaying off screen (when in fullscreen mode) [#677](https://github.com/getgrav/grav-plugin-admin/issues/677)
* Fixed inconsistency in the way selectized fields would be rendered [#692](https://github.com/getgrav/grav-plugin-admin/issues/692)

# v1.1.0-rc.4
## 06/21/2016
Expand Down
2 changes: 1 addition & 1 deletion themes/grav/app/forms/fields/selectize.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default class SelectizeField {
}

_onAddedNodes(event, target/* , record, instance */) {
let fields = $(target).find('select.fancy, input.fancy');
let fields = $(target).find('select.fancy, input.fancy, [data-grav-selectize]');
if (!fields.length) { return; }

fields.each((index, field) => this.add(field));
Expand Down
Loading

0 comments on commit 74fa8f9

Please sign in to comment.