mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-21 18:25:55 +02:00
* WIP on user groups
* Minor changes to user credential prompt
This commit is contained in:
parent
ca3453ecfb
commit
a7f9e3846e
8 changed files with 145 additions and 37 deletions
|
@ -13,6 +13,10 @@ var _ = require('lodash');
|
|||
exports.TextView = TextView;
|
||||
|
||||
function TextView(options) {
|
||||
if(options.dimens) {
|
||||
options.dimens.height = 1; // force height of 1 for TextView's & sub classes
|
||||
}
|
||||
|
||||
View.call(this, options);
|
||||
|
||||
var self = this;
|
||||
|
@ -36,8 +40,6 @@ function TextView(options) {
|
|||
this.textMaskChar = options.textMaskChar;
|
||||
}
|
||||
|
||||
this.dimens.height = 1;
|
||||
|
||||
this.drawText = function(s) {
|
||||
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue