| Index: chrome/browser/resources/file_manager/js/image_editor/commands.js
|
| diff --git a/chrome/browser/resources/file_manager/js/image_editor/commands.js b/chrome/browser/resources/file_manager/js/image_editor/commands.js
|
| index 38cd7636c0ffb8f0c9842b1df6c8558c662fae15..022701248b473fc89b2c7d29a4add7dcfc5b35fe 100644
|
| --- a/chrome/browser/resources/file_manager/js/image_editor/commands.js
|
| +++ b/chrome/browser/resources/file_manager/js/image_editor/commands.js
|
| @@ -184,13 +184,13 @@ CommandQueue.prototype.undo = function() {
|
| } else {
|
| this.currentImage_ = this.baselineImage_;
|
|
|
| - function replay(index) {
|
| + var replay = function(index) {
|
| if (index < self.undo_.length)
|
| self.doExecute_(self.undo_[index], {}, replay.bind(null, index + 1));
|
| else {
|
| complete();
|
| }
|
| - }
|
| + };
|
|
|
| replay(0);
|
| }
|
|
|