Skip to content

Commit bf5bab1

Browse files
committed
EN,CZ : configuration options description example updated to last state
1 parent e07c1f3 commit bf5bab1

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

cs/cfgopt.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ Konfigurační volba zastupuje ⚙️ [konfiguraci pluginů][cfgPlug] na straně
66

77
```javascript
88
class pConfigValuePlugin extends IPlugin {
9+
constructor() {
10+
super();
11+
this.DEFAULT_KEY_CFG_FILENAME = 'marked.min.js;LICENSE-marked.md';
12+
}
13+
914
init() {
1015
const T = this.constructor;
1116
const TI = this;
12-
TI.DEFAULT_KEY_CFG_FILENAME = 'marked.min.js;LICENSE-marked.md';
1317
// TI.cfgFILENAME
1418
super.init();
1519
}

en/cfgopt.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ The configuration option represents ⚙️ [plugin configuration][cfgPlug] on th
66

77
```javascript
88
class pConfigValuePlugin extends IPlugin {
9+
constructor() {
10+
super();
11+
this.DEFAULT_KEY_CFG_FILENAME = 'marked.min.js;LICENSE-marked.md';
12+
}
13+
914
init() {
1015
const T = this.constructor;
1116
const TI = this;
12-
TI.DEFAULT_KEY_CFG_FILENAME = 'marked.min.js;LICENSE-marked.md';
1317
// TI.cfgFILENAME
1418
super.init();
1519
}

0 commit comments

Comments
 (0)