Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview

Artifact ID: 1ce18cac95c45356e783b696361bf0d4086a08aa
Page Name:textarea-log
Date: 2017-10-17 08:38:25
Original User: frostbane
Mimetype:text/x-markdown
Content

textarea-log


Create a textarea where debug log can be written.

This was created due to the difficulty I had when copying lengthy debug logs created by console.log.

clone

$ fossil clone https://chiselapp.com/user/frostbane/repository/textarea-log textarea-log.fossil
$ fossil open textarea-log.fossil

usage

<script type="text/javascript"
        src="textarea.js"></script>
// show textarea
textarea.show();

// output some log to text area
textarea.log("date and time now is :", new Date());

documentation

install dependencies

$ npm install

generate documentation and see doc/textarea-log/index.html

$ ./node_modules/.bin/grunt document

API

show

show the textarea

void textarea.show();

hide

hide the textarea

void textarea.hide();

getBuffer

get the text area buffer content

String textarea.getBuffer();

clear

clear the textarea

everytime the buffer is cleared the cleared contents is added to the buffer history

void textarea.clear();

getHistory

get a copy of the buffer history

String[] textarea.getHistory();

clearHistory

clear the buffer history

void textarea.clearHistory();