Skip to content

Commit

Permalink
[FIX] Fix List Fields
Browse files Browse the repository at this point in the history
  • Loading branch information
PKuhlmay committed Aug 9, 2024
1 parent 9822184 commit 763f078
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Resources/Public/jsDomainModeling/extended/ListField.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
* (see line
**************************************************/
(function () {
var inputEx = YAHOO.inputEx,
lang = YAHOO.lang,
Event = YAHOO.util.Event,
Dom = YAHOO.util.Dom;

/**
* @class Meta field to create a list of other fields
Expand All @@ -26,6 +22,11 @@

YAHOO.util.Event.onDOMReady(function () {
if (YAHOO.inputEx) {
let inputEx = YAHOO.inputEx;
let lang = YAHOO.lang;
let Event = YAHOO.util.Event;
let Dom = YAHOO.util.Dom;

inputEx.ListField = function (options) {
/**
* List of all the subField instances
Expand Down

0 comments on commit 763f078

Please sign in to comment.