Skip to content

Commit

Permalink
https://github.com/Kademi/keditor/issues/127
Browse files Browse the repository at this point in the history
  • Loading branch information
Duc Doan Hoang Minh (IT - ONL) committed Oct 23, 2018
1 parent cf3670e commit 2fb6c87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/keditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,7 @@
var btn = $(this);
flog('Click on .btn-container-delete', btn);

if (confirm('Are you sure that you want to delete this container? This action can not be undo!')) {
if (confirm('Are you sure that you want to delete this container? This action cannot be undone!')) {
var container = btn.closest('.keditor-container');
var components = container.find('.keditor-component');
var contentArea = container.parent();
Expand Down Expand Up @@ -1596,7 +1596,7 @@
var btn = $(this);
flog('Click on .btn-component-delete', btn);

if (confirm('Are you sure that you want to delete this component? This action can not be undo!')) {
if (confirm('Are you sure that you want to delete this component? This action cannot be undone!!')) {
var component = btn.closest('.keditor-component');
var container = component.closest('.keditor-container');
var contentArea = component.closest('.keditor-content-area');
Expand Down

0 comments on commit 2fb6c87

Please sign in to comment.