Skip to content

Commit

Permalink
refactor: upgrade ESLBasePopup
Browse files Browse the repository at this point in the history
  • Loading branch information
julia-murashko committed Jan 29, 2021
1 parent 07aa02a commit ca46a33
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/modules/esl-base-popup/core/esl-base-popup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class ESLBasePopup extends ESLBaseElement {
@boolAttr() public closeOnEsc: boolean;
@boolAttr() public closeOnOutsideAction: boolean;

@jsonAttr<PopupActionParams>({defaultValue: {silent: false, force: true, initiator: 'init'}})
@jsonAttr<PopupActionParams>({defaultValue: {force: true, initiator: 'init'}})
public initialParams: PopupActionParams;
@jsonAttr<PopupActionParams>({defaultValue: {}})
public defaultParams: PopupActionParams;
Expand All @@ -53,9 +53,6 @@ export class ESLBasePopup extends ESLBaseElement {
break;
case 'group':
this.$$fire('change:group', {
bubbles: true,
composed: true,
cancelable: true,
detail: {oldGroupName: oldVal, newGroupName: newVal}
});
break;
Expand Down

0 comments on commit ca46a33

Please sign in to comment.