| | |
| | | |
| | | |
| | | this.decorateTextarea = function(id) { |
| | | this.text_area = typeof(id) == 'string' ? document.getElementById(id) : id; |
| | | this.text_area = typeof id === 'string' ? document.getElementById(id) : id; |
| | | |
| | | if (this.text_area) { |
| | | if (!this.spell_container && this.decoration) { |
| | |
| | | // API Functions (the ones that you can call) |
| | | ///// |
| | | this.setSpellContainer = function(id) { |
| | | this.spell_container = typeof(id) == 'string' ? document.getElementById(id) : id; |
| | | this.spell_container = typeof id === 'string' ? document.getElementById(id) : id; |
| | | }; |
| | | |
| | | this.setLanguages = function(lang_dict) { |
| | |
| | | // Misc. functions |
| | | ///// |
| | | this.isDefined = function(o) { |
| | | return (o != 'undefined' && o != null) |
| | | return (o !== undefined && o !== null) |
| | | }; |
| | | |
| | | this.errorFixed = function() { |