mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
never translate readonly textbox or textarea
This commit is contained in:
parent
43d8642347
commit
c702674401
@ -5,6 +5,12 @@ import {Et2Description} from "../Et2Description/Et2Description";
|
|||||||
*/
|
*/
|
||||||
export class Et2TextareaReadonly extends Et2Description
|
export class Et2TextareaReadonly extends Et2Description
|
||||||
{
|
{
|
||||||
|
constructor()
|
||||||
|
{
|
||||||
|
super();
|
||||||
|
|
||||||
|
this.noLang = true; // never translation r/o textareas
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// We can't bind the same class to a different tag
|
// We can't bind the same class to a different tag
|
||||||
|
@ -16,6 +16,11 @@ import {Et2Description} from "../Et2Description/Et2Description";
|
|||||||
*/
|
*/
|
||||||
export class Et2TextboxReadonly extends Et2Description
|
export class Et2TextboxReadonly extends Et2Description
|
||||||
{
|
{
|
||||||
|
constructor()
|
||||||
|
{
|
||||||
|
super();
|
||||||
|
this.noLang = true; // never translation r/o textboxes
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// We can't bind the same class to a different tag
|
// We can't bind the same class to a different tag
|
||||||
|
Loading…
Reference in New Issue
Block a user