MCPcopy
hub / github.com/callumalpass/tasknotes / getNLPInputValue

Method getNLPInputValue

src/modals/TaskCreationModal.ts:405–412  ·  view source on GitHub ↗

* Get the current NLP input value from either markdown editor or fallback textarea

()

Source from the content-addressed store, hash-verified

403 * Get the current NLP input value from either markdown editor or fallback textarea
404 */
405 private getNLPInputValue(): string {
406 if (this.nlMarkdownEditor) {
407 return this.nlMarkdownEditor.value;
408 } else if (this.nlInput) {
409 return this.nlInput.value;
410 }
411 return "";
412 }
413
414 protected createActionBar(container: HTMLElement): void {
415 this.actionBar = container.createDiv("tn-task-modal__action-bar");

Callers 2

createActionBarMethod · 0.95
handleSaveMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected