Roo/bootstrap/Modal.js
authorAlan Knowles <alan@roojs.com>
Thu, 19 Nov 2020 09:09:35 +0000 (17:09 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 19 Nov 2020 09:09:35 +0000 (17:09 +0800)
Roo/bootstrap/Modal.js

index d7ca273..c1e7947 100644 (file)
@@ -299,11 +299,14 @@ Roo.extend(Roo.bootstrap.Modal, Roo.bootstrap.Component,  {
         if (this.editableTitle) {
             this.headerEditEl =  this.headerEl.select('.form-control',true).first();
             this.headerEl.on('click', function() { this.toggleHeaderInput(true) } , this);
-            this.headerEditEl .on('keyup', function(e) {
+            this.headerEditEl.on('keyup', function(e) {
                     if(e.isNavKeyPress()){
                             this.toggleHeaderInput(false)
                     }
                 }, this);
+            this.headerEditEl.on('blur', function(e) {
+                this.toggleHeaderInput(false)
+            });
         }
 
     },