File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ function prepareAndCreateAlertDialog(
228
228
if ( ( builder as any ) . _currentModalCustomView ) {
229
229
const view = ( builder as any ) . _currentModalCustomView as View ;
230
230
const context = options . context || { } ;
231
- context . closeCallback = function ( ... originalArgs ) {
231
+ context . closeCallback = function ( originalArgs ) {
232
232
onDone ( originalArgs , dlg ) ;
233
233
// if (callback) {
234
234
// callback.apply(this, originalArgs);
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ function createAlertController(options: DialogOptions & MDCAlertControlerOptions
224
224
225
225
alertController . _resolveFunction = resolve ;
226
226
const context = options . context || { } ;
227
- context . closeCallback = function ( ... originalArgs ) {
227
+ context . closeCallback = function ( originalArgs ) {
228
228
if ( alertController . _resolveFunction ) {
229
229
alertController . _resolveFunction . apply ( this , originalArgs ) ;
230
230
alertController . _resolveFunction = null ;
You can’t perform that action at this time.
0 commit comments