Skip to content

Commit

Permalink
MDL-43232 JavaScript: Correct typo when cancelling the confirmcancel
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnicols committed Dec 11, 2013
1 parent 0e72987 commit 44b724c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ M.core_backup.confirmcancel = {
new Y.EventHandle(M.core_backup.confirmcancel.listeners).detach();

// Simulate the original cancel button click.
c.currentTarget.simulate('click');
e.currentTarget.simulate('click');
}, this);


Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ M.core_backup.confirmcancel = {
new Y.EventHandle(M.core_backup.confirmcancel.listeners).detach();

// Simulate the original cancel button click.
c.currentTarget.simulate('click');
e.currentTarget.simulate('click');
}, this);


Expand Down
2 changes: 1 addition & 1 deletion backup/util/ui/yui/src/confirmcancel/js/confirmcancel.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ M.core_backup.confirmcancel = {
new Y.EventHandle(M.core_backup.confirmcancel.listeners).detach();

// Simulate the original cancel button click.
c.currentTarget.simulate('click');
e.currentTarget.simulate('click');
}, this);


Expand Down

0 comments on commit 44b724c

Please sign in to comment.