File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,9 @@ define([
261
261
this . reRenderAllBlock_asc ( ) ;
262
262
this . resetBlockListAndRenderThisBlock ( block ) ;
263
263
}
264
+ return true ;
265
+ } else {
266
+ return false ;
264
267
}
265
268
}
266
269
@@ -289,6 +292,9 @@ define([
289
292
this . resetOptionPage ( ) ;
290
293
this . reRenderAllBlock_asc ( ) ;
291
294
}
295
+ return true ;
296
+ } else {
297
+ return false ;
292
298
}
293
299
294
300
}
Original file line number Diff line number Diff line change @@ -443,7 +443,12 @@ define([
443
443
444
444
/** option page - apply 버튼 클릭 함수 바인딩 */
445
445
$ ( document ) . on ( STR_CLICK , VP_ID_PREFIX + VP_APIBLOCK_BOARD_OPTION_APPLY_BUTTON , function ( ) {
446
- blockContainer . applyBlock ( ) ;
446
+ var isApplied = blockContainer . applyBlock ( ) ;
447
+
448
+ if ( isApplied ) {
449
+ // #11 applied! popup
450
+ vpCommon . renderSuccessMessage ( 'Applied!' ) ;
451
+ }
447
452
} ) ;
448
453
449
454
/**
You can’t perform that action at this time.
0 commit comments