mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-23 19:20:41 +02:00
* FSE quote format is now configurable and random if there are 2:n available
* Remove old 3rd party string-format & replace with string_format.js version * Some fix some bugs with string_format.js padding, width, and number format
This commit is contained in:
parent
d4d64f925d
commit
f7c21baa52
25 changed files with 128 additions and 144 deletions
|
@ -66,7 +66,7 @@ var SPECIAL_KEY_MAP_DEFAULT = {
|
|||
'line feed' : [ 'return' ],
|
||||
exit : [ 'esc' ],
|
||||
backspace : [ 'backspace' ],
|
||||
'delete' : [ 'del' ],
|
||||
delete : [ 'del' ],
|
||||
tab : [ 'tab' ],
|
||||
up : [ 'up arrow' ],
|
||||
down : [ 'down arrow' ],
|
||||
|
@ -802,7 +802,6 @@ function MultiLineEditTextView(options) {
|
|||
self.emitEditPosition();
|
||||
};
|
||||
|
||||
//this.keyPressClearLine = function() {
|
||||
this.keyPressDeleteLine = function() {
|
||||
if(self.textLines.length > 0) {
|
||||
self.removeCharactersFromText(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue