Skip to content

Commit bacdd18

Browse files
Update README.md
1 parent c1e9098 commit bacdd18

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

nodejs/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ app.post('/', (req, res) => {
4848

4949
const form = new WebForms();
5050

51-
form.SetFontSize(InputPlace.tag('form'), FontSize);
52-
form.SetBackgroundColor(InputPlace.tag('form'), BackgroundColor);
53-
form.SetDisabled(InputPlace.name('btn_SetBodyValue'), true);
51+
form.setFontSize(InputPlace.tag('form'), FontSize);
52+
form.setBackgroundColor(InputPlace.tag('form'), BackgroundColor);
53+
form.setDisabled(InputPlace.name('btn_SetBodyValue'), true);
5454

55-
form.AddTag(InputPlace.tag('form'), 'h3');
56-
form.SetText(InputPlace.tag('h3'), `Welcome ${Name}!`);
55+
form.addTag(InputPlace.tag('form'), 'h3');
56+
form.setText(InputPlace.tag('h3'), `Welcome ${Name}!`);
5757

5858
res.send(form.response());
5959
} else {

0 commit comments

Comments
 (0)