From 3e872566635150a158f47d2aeb526534596030d7 Mon Sep 17 00:00:00 2001 From: Pablo Santa Cruz <pablo@roshka.com.py> Date: Mon, 31 Aug 2015 09:44:35 -0400 Subject: [PATCH] Fix a typo Fix a very small typo in a comment. --- src/containers/editable-container.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/editable-container.js b/src/containers/editable-container.js index a106784..c5ed625 100644 --- a/src/containers/editable-container.js +++ b/src/containers/editable-container.js @@ -150,7 +150,7 @@ Applied as jQuery method. .on({ save: $.proxy(this.save, this), //click on submit button (value changed) nochange: $.proxy(function(){ this.hide('nochange'); }, this), //click on submit button (value NOT changed) - cancel: $.proxy(function(){ this.hide('cancel'); }, this), //click on calcel button + cancel: $.proxy(function(){ this.hide('cancel'); }, this), //click on cancel button show: $.proxy(function() { if(this.delayedHide) { this.hide(this.delayedHide.reason);