mirror of
https://github.com/janishutz/fundamentals-of-webengineering.git
synced 2025-11-25 05:44:24 +00:00
Some CSS work
This commit is contained in:
@@ -37,8 +37,8 @@ const headerList = listRef<string>(
|
||||
[],
|
||||
'table-header',
|
||||
{
|
||||
'type': 'td',
|
||||
'cssClasses': [],
|
||||
'type': 'th',
|
||||
'cssClasses': [ 'sortable' ],
|
||||
'children': []
|
||||
}
|
||||
);
|
||||
@@ -75,6 +75,10 @@ columnDatatype.addConditionalElementBind( document.getElementById( 'title-column
|
||||
columnDatatype.addConditionalElementBind( columnEntriesElement, stringOrNumberCheckPredicate );
|
||||
columnDatatype.addConditionalElementBind( document.getElementById( 'title-column-entries' )!,
|
||||
stringOrNumberCheckPredicate );
|
||||
columnDatatype.addConditionalElementBind( document.getElementById( 'column-info' )!, val => val !== '' );
|
||||
columnDatatype.addConditionalElementBind( document.getElementById( 'column-info-placeholder' )!, val => val === '' );
|
||||
filename.addConditionalElementBind( document.getElementById( 'data-info' )!, val => val !== '' );
|
||||
filename.addConditionalElementBind( document.getElementById( 'data-info-placeholder' )!, val => val === '' );
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user