Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef Gabrielsson committed Aug 14, 2024
1 parent 7f2d15b commit 385f36e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions nightly/front.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ var dom = {
'mapclass': 'map',
'mapmargin': 'map',
'mapbindvar': 'map',
'color': 'apply',
'bgcolor': 'apply',
'bold': 'apply',
'cursor': 'apply',
'margintop': 'apply',
Expand All @@ -65,8 +67,10 @@ var dom = {
'zindex': 'apply'
},
_eventMap: {
'focus': 'focused',
'click': 'clicked'
'click': 'clicked',
'enable': 'enabled',
'disable': 'disabled',
'focus': 'focused'
},
_uniqueId: 0,
_bindfieldPos: 0,
Expand Down Expand Up @@ -267,6 +271,9 @@ var dom = {
case 'whitespace':
attr = 'whiteSpace'
break
case 'bgcolor':
attr = 'backgroundColor'
break
case 'bold':
attr = 'fontWeight'
value = 'bold'
Expand Down

0 comments on commit 385f36e

Please sign in to comment.