jordandelozier / wysibb

WYSIWYG BBcode editor
http://www.wysibb.com
246 stars 86 forks source link

Fix for modals body.focus() undefined variable in bbcode only mode #120

Open MrMazur opened 9 years ago

MrMazur commented 9 years ago

Go to: (line 1808) selectLastRange: function() {

replace: this.body.focus(); with: if (this.body && typeof this.body.focus == 'function') {this.body.focus();}

Simple but works.