123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221 |
- goog.provide('goog.ui.AbstractSpellChecker');
- goog.provide('goog.ui.AbstractSpellChecker.AsyncResult');
- goog.require('goog.a11y.aria');
- goog.require('goog.array');
- goog.require('goog.asserts');
- goog.require('goog.dom');
- goog.require('goog.dom.InputType');
- goog.require('goog.dom.NodeType');
- goog.require('goog.dom.TagName');
- goog.require('goog.dom.classlist');
- goog.require('goog.dom.selection');
- goog.require('goog.events');
- goog.require('goog.events.Event');
- goog.require('goog.events.EventType');
- goog.require('goog.math.Coordinate');
- goog.require('goog.spell.SpellCheck');
- goog.require('goog.structs.Set');
- goog.require('goog.style');
- goog.require('goog.ui.Component');
- goog.require('goog.ui.MenuItem');
- goog.require('goog.ui.MenuSeparator');
- goog.require('goog.ui.PopupMenu');
- goog.ui.AbstractSpellChecker = function(spellCheck, opt_domHelper) {
- goog.ui.Component.call(this, opt_domHelper);
-
- this.spellCheck = spellCheck;
-
- this.wordElements_ = {};
-
- this.inputElements_ = [];
-
- this.splitRegex_ = new RegExp(
- '([^' + goog.spell.SpellCheck.WORD_BOUNDARY_CHARS + ']*)' +
- '([' + goog.spell.SpellCheck.WORD_BOUNDARY_CHARS + ']*)',
- 'g');
- goog.events.listen(
- this.spellCheck, goog.spell.SpellCheck.EventType.WORD_CHANGED,
- this.onWordChanged_, false, this);
- };
- goog.inherits(goog.ui.AbstractSpellChecker, goog.ui.Component);
- goog.tagUnsealableClass(goog.ui.AbstractSpellChecker);
- goog.ui.AbstractSpellChecker.KEY_PREFIX_ = ':';
- goog.ui.AbstractSpellChecker.ORIGINAL_ = 'g-spell-original';
- goog.ui.AbstractSpellChecker.prototype.menu_;
- goog.ui.AbstractSpellChecker.prototype.menuSeparator_;
- goog.ui.AbstractSpellChecker.prototype.menuIgnore_;
- goog.ui.AbstractSpellChecker.prototype.menuEdit_;
- goog.ui.AbstractSpellChecker.prototype.isVisible_ = false;
- goog.ui.AbstractSpellChecker.prototype.correctedWords_;
- goog.ui.AbstractSpellChecker.prototype.suggestionsMenuClassName =
- goog.getCssName('goog-menu');
- goog.ui.AbstractSpellChecker.prototype.markCorrected = false;
- goog.ui.AbstractSpellChecker.prototype.activeWord_;
- goog.ui.AbstractSpellChecker.prototype.activeElement_;
- goog.ui.AbstractSpellChecker.prototype.asyncMode_ = false;
- goog.ui.AbstractSpellChecker.prototype.asyncWordsPerBatch_ = 1000;
- goog.ui.AbstractSpellChecker.prototype.asyncText_;
- goog.ui.AbstractSpellChecker.prototype.asyncRangeStart_;
- goog.ui.AbstractSpellChecker.prototype.asyncNode_;
- goog.ui.AbstractSpellChecker.prototype.processedElementsCount_ = 0;
- goog.ui.AbstractSpellChecker.prototype.excludeMarker;
- goog.ui.AbstractSpellChecker.prototype.focusedElementIndex_ = 0;
- goog.ui.AbstractSpellChecker.prototype.lastIndex_ = 0;
- goog.ui.AbstractSpellChecker.prototype.getSpellCheck = function() {
- return this.spellCheck;
- };
- goog.ui.AbstractSpellChecker.prototype.setSpellCheck = function(spellCheck) {
- this.spellCheck = spellCheck;
- };
- goog.ui.AbstractSpellChecker.prototype.setHandler = function(handler) {
- this.setSpellCheck(handler);
- };
- goog.ui.AbstractSpellChecker.prototype.getMenu = function() {
- return this.menu_;
- };
- goog.ui.AbstractSpellChecker.prototype.getMenuEdit = function() {
- return this.menuEdit_;
- };
- goog.ui.AbstractSpellChecker.prototype.getLastIndex = function() {
- return this.lastIndex_;
- };
- goog.ui.AbstractSpellChecker.prototype.getNextIndex = function() {
- return ++this.lastIndex_;
- };
- goog.ui.AbstractSpellChecker.prototype.setExcludeMarker = function(marker) {
- this.excludeMarker = marker || undefined;
- };
- goog.ui.AbstractSpellChecker.prototype.check = function() {
- this.isVisible_ = true;
- if (this.markCorrected) {
- this.correctedWords_ = new goog.structs.Set();
- }
- };
- goog.ui.AbstractSpellChecker.prototype.resume = function() {
- this.isVisible_ = false;
- this.clearWordElements();
- this.lastIndex_ = 0;
- this.setFocusedElementIndex(0);
- var input;
- while (input = this.inputElements_.pop()) {
- input.parentNode.replaceChild(
- this.getDomHelper().createTextNode(input.value), input);
- }
- if (this.correctedWords_) {
- this.correctedWords_.clear();
- }
- };
- goog.ui.AbstractSpellChecker.prototype.isVisible = function() {
- return this.isVisible_;
- };
- goog.ui.AbstractSpellChecker.prototype.clearWordElements = function() {
- this.wordElements_ = {};
- };
- goog.ui.AbstractSpellChecker.prototype.ignoreWord = function(word) {
- this.spellCheck.setWordStatus(word, goog.spell.SpellCheck.WordStatus.IGNORED);
- };
- goog.ui.AbstractSpellChecker.prototype.editWord_ = function(el, old) {
- var input = this.getDomHelper().createDom(
- goog.dom.TagName.INPUT, {'type': goog.dom.InputType.TEXT, 'value': old});
- var w = goog.style.getSize(el).width;
-
- if (w < 50) {
- w = 50;
- }
- input.style.width = w + 'px';
- el.parentNode.replaceChild(input, el);
- try {
- input.focus();
- goog.dom.selection.setCursorPosition(input, old.length);
- } catch (o) {
- }
- this.inputElements_.push(input);
- };
- goog.ui.AbstractSpellChecker.prototype.replaceWord = function(el, old, word) {
- if (old != word) {
- if (!el.getAttribute(goog.ui.AbstractSpellChecker.ORIGINAL_)) {
- el.setAttribute(goog.ui.AbstractSpellChecker.ORIGINAL_, old);
- }
- goog.dom.setTextContent(el, word);
- var status = this.spellCheck.checkWord(word);
-
-
- if (this.markCorrected && this.correctedWords_ &&
- status != goog.spell.SpellCheck.WordStatus.INVALID) {
- this.correctedWords_.add(word);
- status = goog.spell.SpellCheck.WordStatus.CORRECTED;
- }
-
-
- var oldIndex = goog.ui.AbstractSpellChecker.toInternalKey_(old);
- var newIndex = goog.ui.AbstractSpellChecker.toInternalKey_(word);
-
- var elements = this.wordElements_[oldIndex];
- goog.array.remove(elements, el);
- if (status != goog.spell.SpellCheck.WordStatus.VALID) {
-
- if (this.wordElements_[newIndex]) {
- this.wordElements_[newIndex].push(el);
- } else {
- this.wordElements_[newIndex] = [el];
- }
- }
-
- this.updateElement(el, word, status);
- this.dispatchEvent(goog.events.EventType.CHANGE);
- }
- };
- goog.ui.AbstractSpellChecker.prototype.getSuggestions_ = function() {
-
- var suggestions = this.spellCheck.getSuggestions(
- (this.activeWord_));
- if (!suggestions[0]) {
- var originalWord = this.activeElement_.getAttribute(
- goog.ui.AbstractSpellChecker.ORIGINAL_);
- if (originalWord && originalWord != this.activeWord_) {
- suggestions = this.spellCheck.getSuggestions(originalWord);
- }
- }
- return suggestions;
- };
- goog.ui.AbstractSpellChecker.prototype.showSuggestionsMenu = function(
- el, opt_pos) {
- this.activeWord_ = goog.dom.getTextContent(el);
- this.activeElement_ = el;
-
- while (this.menu_.getChildAt(0) != this.menuSeparator_) {
- this.menu_.removeChildAt(0, true).dispose();
- }
-
- var suggestions = this.getSuggestions_();
- for (var suggestion, i = 0; suggestion = suggestions[i]; i++) {
- this.menu_.addChildAt(
- new goog.ui.MenuItem(suggestion, suggestion, this.getDomHelper()), i,
- true);
- }
- if (!suggestions[0]) {
-
- var MSG_SPELL_NO_SUGGESTIONS = goog.getMsg('No Suggestions');
- var item =
- new goog.ui.MenuItem(MSG_SPELL_NO_SUGGESTIONS, '', this.getDomHelper());
- item.setEnabled(false);
- this.menu_.addChildAt(item, 0, true);
- }
-
-
- if (this.markCorrected) {
- var corrected =
- this.correctedWords_ && this.correctedWords_.contains(this.activeWord_);
- this.menuIgnore_.setVisible(!corrected);
- this.menuEdit_.setVisible(true);
- } else {
- this.menuIgnore_.setVisible(true);
- this.menuEdit_.setVisible(false);
- }
- if (opt_pos) {
- if (!(opt_pos instanceof goog.math.Coordinate)) {
- var posX = opt_pos.clientX;
- var posY = opt_pos.clientY;
-
-
-
- if (this.getElement().contentDocument ||
- this.getElement().contentWindow) {
- var offset = goog.style.getClientPosition(this.getElement());
- posX += offset.x;
- posY += offset.y;
- }
- opt_pos = new goog.math.Coordinate(posX, posY);
- }
- this.menu_.showAt(opt_pos.x, opt_pos.y);
- } else {
- this.menu_.setVisible(true);
- }
- };
- goog.ui.AbstractSpellChecker.prototype.initSuggestionsMenu = function() {
- this.menu_ = new goog.ui.PopupMenu(this.getDomHelper());
- this.menuSeparator_ = new goog.ui.MenuSeparator(this.getDomHelper());
-
-
-
- var MSG_SPELL_IGNORE = goog.getMsg('Ignore');
-
- var MSG_SPELL_EDIT_WORD = goog.getMsg('Edit Word');
- this.menu_.addChild(this.menuSeparator_, true);
- this.menuIgnore_ =
- new goog.ui.MenuItem(MSG_SPELL_IGNORE, '', this.getDomHelper());
- this.menu_.addChild(this.menuIgnore_, true);
- this.menuEdit_ =
- new goog.ui.MenuItem(MSG_SPELL_EDIT_WORD, '', this.getDomHelper());
- this.menuEdit_.setVisible(false);
- this.menu_.addChild(this.menuEdit_, true);
- this.menu_.setParent(this);
- this.menu_.render();
- var menuElement = this.menu_.getElement();
- goog.asserts.assert(menuElement);
- goog.dom.classlist.add(menuElement, this.suggestionsMenuClassName);
- goog.events.listen(
- this.menu_, goog.ui.Component.EventType.ACTION, this.onCorrectionAction,
- false, this);
- };
- goog.ui.AbstractSpellChecker.prototype.onCorrectionAction = function(event) {
- var word = (this.activeWord_);
- var el = (this.activeElement_);
- if (event.target == this.menuIgnore_) {
- this.ignoreWord(word);
- } else if (event.target == this.menuEdit_) {
- this.editWord_(el, word);
- } else {
- this.replaceWord(el, word, event.target.getModel());
- this.dispatchEvent(goog.ui.Component.EventType.CHANGE);
- }
- delete this.activeWord_;
- delete this.activeElement_;
- };
- goog.ui.AbstractSpellChecker.prototype.removeMarkup = function(el) {
- var firstChild = el.firstChild;
- var text = firstChild.nodeValue;
- if (el.nextSibling && el.nextSibling.nodeType == goog.dom.NodeType.TEXT) {
- if (el.previousSibling &&
- el.previousSibling.nodeType == goog.dom.NodeType.TEXT) {
- el.previousSibling.nodeValue =
- el.previousSibling.nodeValue + text + el.nextSibling.nodeValue;
- this.getDomHelper().removeNode(el.nextSibling);
- } else {
- el.nextSibling.nodeValue = text + el.nextSibling.nodeValue;
- }
- } else if (
- el.previousSibling &&
- el.previousSibling.nodeType == goog.dom.NodeType.TEXT) {
- el.previousSibling.nodeValue += text;
- } else {
- el.parentNode.insertBefore(firstChild, el);
- }
- this.getDomHelper().removeNode(el);
- };
- goog.ui.AbstractSpellChecker.prototype.updateElement = function(
- el, word, status) {
- if (this.markCorrected && this.correctedWords_ &&
- this.correctedWords_.contains(word)) {
- status = goog.spell.SpellCheck.WordStatus.CORRECTED;
- }
- if (status == goog.spell.SpellCheck.WordStatus.VALID) {
- this.removeMarkup(el);
- } else {
- goog.dom.setProperties(el, this.getElementProperties(status));
- }
- };
- goog.ui.AbstractSpellChecker.prototype.makeElementId = function(opt_id) {
- return this.getId() + '.' + (opt_id ? opt_id : this.getNextIndex());
- };
- goog.ui.AbstractSpellChecker.prototype.getElementByIndex = function(index) {
- return this.getDomHelper().getElement(this.makeElementId(index));
- };
- goog.ui.AbstractSpellChecker.prototype.createWordElement = function(
- word, status) {
- var parameters = this.getElementProperties(status);
-
- if (!parameters['id']) {
- parameters['id'] = this.makeElementId();
- }
- if (!parameters['tabIndex']) {
- parameters['tabIndex'] = -1;
- }
- var el =
- this.getDomHelper().createDom(goog.dom.TagName.SPAN, parameters, word);
- goog.a11y.aria.setRole(el, 'menuitem');
- goog.a11y.aria.setState(el, 'haspopup', true);
- this.registerWordElement(word, el);
- return el;
- };
- goog.ui.AbstractSpellChecker.prototype.registerWordElement = function(
- word, el) {
-
-
- var index = goog.ui.AbstractSpellChecker.toInternalKey_(word);
- if (this.wordElements_[index]) {
- this.wordElements_[index].push(el);
- } else {
- this.wordElements_[index] = [el];
- }
- };
- goog.ui.AbstractSpellChecker.prototype.getElementProperties =
- goog.abstractMethod;
- goog.ui.AbstractSpellChecker.prototype.onWordChanged_ = function(event) {
-
-
- var index = goog.ui.AbstractSpellChecker.toInternalKey_(event.word);
- var elements = this.wordElements_[index];
- if (elements) {
- for (var el, i = 0; el = elements[i]; i++) {
- this.updateElement(el, event.word, event.status);
- }
- }
- };
- goog.ui.AbstractSpellChecker.prototype.disposeInternal = function() {
- if (this.isVisible_) {
-
- this.resume();
- }
- goog.events.unlisten(
- this.spellCheck, goog.spell.SpellCheck.EventType.WORD_CHANGED,
- this.onWordChanged_, false, this);
- if (this.menu_) {
- this.menu_.dispose();
- delete this.menu_;
- delete this.menuIgnore_;
- delete this.menuSeparator_;
- }
- delete this.spellCheck;
- delete this.wordElements_;
- goog.ui.AbstractSpellChecker.superClass_.disposeInternal.call(this);
- };
- goog.ui.AbstractSpellChecker.prototype.populateDictionary = function(
- text, words) {
- this.splitRegex_.lastIndex = 0;
- var result;
- var numScanned = 0;
- while (result = this.splitRegex_.exec(text)) {
- if (result[0].length == 0) {
- break;
- }
- var word = result[1];
- if (word) {
- this.spellCheck.checkWord(word);
- ++numScanned;
- if (numScanned >= words) {
- break;
- }
- }
- }
- this.spellCheck.processPending();
- return numScanned;
- };
- goog.ui.AbstractSpellChecker.prototype.processWord = function(
- node, text, status) {
- throw Error('Need to override processWord_ in derivative class');
- };
- goog.ui.AbstractSpellChecker.prototype.processRange = function(node, text) {
- throw Error('Need to override processRange_ in derivative class');
- };
- goog.ui.AbstractSpellChecker.prototype.initializeAsyncMode = function() {
- if (this.asyncMode_ || this.processedElementsCount_ ||
- this.asyncText_ != null || this.asyncNode_) {
- throw Error('Async mode already in progress.');
- }
- this.asyncMode_ = true;
- this.processedElementsCount_ = 0;
- delete this.asyncText_;
- this.asyncRangeStart_ = 0;
- delete this.asyncNode_;
- this.blockReadyEvents();
- };
- goog.ui.AbstractSpellChecker.prototype.finishAsyncProcessing = function() {
- if (!this.asyncMode_ || this.asyncText_ != null || this.asyncNode_) {
- throw Error('Async mode not started or there is still text to process.');
- }
- this.asyncMode_ = false;
- this.processedElementsCount_ = 0;
- this.unblockReadyEvents();
- this.spellCheck.processPending();
- };
- goog.ui.AbstractSpellChecker.prototype.blockReadyEvents = function() {
- goog.events.listen(
- this.spellCheck, goog.spell.SpellCheck.EventType.READY,
- goog.events.Event.stopPropagation, true);
- };
- goog.ui.AbstractSpellChecker.prototype.unblockReadyEvents = function() {
- goog.events.unlisten(
- this.spellCheck, goog.spell.SpellCheck.EventType.READY,
- goog.events.Event.stopPropagation, true);
- };
- goog.ui.AbstractSpellChecker.prototype.processTextAsync = function(node, text) {
- if (!this.asyncMode_ || this.asyncText_ != null || this.asyncNode_) {
- throw Error('Not in async mode or previous text has not been processed.');
- }
- this.splitRegex_.lastIndex = 0;
- var stringSegmentStart = 0;
- var result;
- while (result = this.splitRegex_.exec(text)) {
- if (result[0].length == 0) {
- break;
- }
- var word = result[1];
- if (word) {
- var status = this.spellCheck.checkWord(word);
- if (status != goog.spell.SpellCheck.WordStatus.VALID) {
- var precedingText =
- text.substr(stringSegmentStart, result.index - stringSegmentStart);
- if (precedingText) {
- this.processRange(node, precedingText);
- }
- stringSegmentStart = result.index + word.length;
- this.processWord(node, word, status);
- }
- }
- this.processedElementsCount_++;
- if (this.processedElementsCount_ > this.asyncWordsPerBatch_) {
- this.asyncText_ = text;
- this.asyncRangeStart_ = stringSegmentStart;
- this.asyncNode_ = node;
- this.processedElementsCount_ = 0;
- return goog.ui.AbstractSpellChecker.AsyncResult.PENDING;
- }
- }
- var leftoverText = text.substr(stringSegmentStart);
- if (leftoverText) {
- this.processRange(node, leftoverText);
- }
- return goog.ui.AbstractSpellChecker.AsyncResult.DONE;
- };
- goog.ui.AbstractSpellChecker.prototype.continueAsyncProcessing = function() {
- if (!this.asyncMode_ || this.asyncText_ == null || !this.asyncNode_) {
- throw Error('Not in async mode or processing not started.');
- }
- var node = (this.asyncNode_);
- var stringSegmentStart = this.asyncRangeStart_;
- goog.asserts.assertNumber(stringSegmentStart);
- var text = this.asyncText_;
- var result;
- while (result = this.splitRegex_.exec(text)) {
- if (result[0].length == 0) {
- break;
- }
- var word = result[1];
- if (word) {
- var status = this.spellCheck.checkWord(word);
- if (status != goog.spell.SpellCheck.WordStatus.VALID) {
- var precedingText =
- text.substr(stringSegmentStart, result.index - stringSegmentStart);
- if (precedingText) {
- this.processRange(node, precedingText);
- }
- stringSegmentStart = result.index + word.length;
- this.processWord(node, word, status);
- }
- }
- this.processedElementsCount_++;
- if (this.processedElementsCount_ > this.asyncWordsPerBatch_) {
- this.processedElementsCount_ = 0;
- this.asyncRangeStart_ = stringSegmentStart;
- return goog.ui.AbstractSpellChecker.AsyncResult.PENDING;
- }
- }
- delete this.asyncText_;
- this.asyncRangeStart_ = 0;
- delete this.asyncNode_;
- var leftoverText = text.substr(stringSegmentStart);
- if (leftoverText) {
- this.processRange(node, leftoverText);
- }
- return goog.ui.AbstractSpellChecker.AsyncResult.DONE;
- };
- goog.ui.AbstractSpellChecker.toInternalKey_ = function(word) {
- if (word in Object.prototype) {
- return goog.ui.AbstractSpellChecker.KEY_PREFIX_ + word;
- }
- return word;
- };
- goog.ui.AbstractSpellChecker.prototype.navigate = function(direction) {
- var handled = false;
- var isMovingToNextWord =
- direction == goog.ui.AbstractSpellChecker.Direction.NEXT;
- var focusedIndex = this.getFocusedElementIndex();
- var el;
- do {
-
- focusedIndex += isMovingToNextWord ? 1 : -1;
- if (focusedIndex < 1 || focusedIndex > this.getLastIndex()) {
-
- handled = true;
- break;
- }
-
-
- } while (!(el = this.getElementByIndex(focusedIndex)));
- if (el) {
- this.setFocusedElementIndex(focusedIndex);
- this.focusOnElement(el);
- handled = true;
- }
- return handled;
- };
- goog.ui.AbstractSpellChecker.prototype.getFocusedElementIndex = function() {
- return this.focusedElementIndex_;
- };
- goog.ui.AbstractSpellChecker.prototype.setFocusedElementIndex = function(
- focusElementIndex) {
- this.focusedElementIndex_ = focusElementIndex;
- };
- goog.ui.AbstractSpellChecker.prototype.focusOnElement = function(element) {
- element.focus();
- };
- goog.ui.AbstractSpellChecker.Direction = {
- PREVIOUS: 0,
- NEXT: 1
- };
- goog.ui.AbstractSpellChecker.AsyncResult = {
-
- PENDING: 1,
-
- DONE: 2
- };
|