Open Mijsoot opened 1 year ago
Hi,
I found a another one little mistake with a similar trouble, when we have 'onlyBBmode=true'.
I changed this :
selectLastRange: function() { if (this.lastRange) { this.body.focus(); this.selectRange(this.lastRange); this.lastRange=false; } },
To this :
selectLastRange: function() { if (this.lastRange) { //this.body.focus(); if(!this.options.onlyBBmode){ this.body.focus(); }else{ this.$txtArea.focus(); } this.selectRange(this.lastRange); this.lastRange=false; } },
Friendly
Hi,
I found a another one little mistake with a similar trouble, when we have 'onlyBBmode=true'.
I changed this :
To this :
Friendly