2014-09-02 56 views
0

我使用froala js 1.9 js ..它工作得很好,直到yest ..但現在輸入密鑰不在編輯器上工作。輸入密鑰不工作froala編輯器

$('#txt_blog_editor').editable({ 
      inlineMode: false, 
      minHeight: 700, 
      //height: 700, 
      plainPaste: false, 
      width: 1097, 
      allowedImageTypes: ["jpeg", "jpg", "png"], 
      borderColor: '#00008b', 
      inverseSkin: false, 
      spellcheck: true, 
      imageUploadURL: 'BlogPhotos.ashx', 
      autosaveInterval: 1000, 
      imageErrorCallback: function (data) { 
       if (data.errorCode == 1) { 

       } 

       // No link in upload response. 
       else if (data.errorCode == 2) { 

       } 

       // Error during file upload. 
       else if (data.errorCode == 3) { 

       } 

       // Parsing response failed. 
       else if (data.errorCode == 4) { 

       } 
      }, 
      buttons: ['bold', 'italic', 'underline', 'strikeThrough', 'sep', 'align', 'insertOrderedList', 'insertUnorderedList', 'outdent', 'indent', 'sep', 'createLink', 'insertImage', 'insertVideo', 'undo', 'redo', 'insertHorizontalRule','color'] 
     }); 

這是我的代碼並初始化...

我檢查了回車鍵正在任何其他頁面elemnts但不是這個編輯器。

回答

1

出現新的版本1.2.0。你應該嘗試更新它,也許這將解決你的問題。