Overview
Comment: | [core][njs][js] textformatter: rename few functions and attributs |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | core | njs | nodejs |
Files: | files | file ages | folders |
SHA3-256: |
69639816570429e73c2821ea71b252fe |
User & Date: | olr on 2018-10-17 14:04:46 |
Other Links: | branch diff | manifest | tags |
Context
2018-10-17
| ||
14:21 | [build][fr] build NodeJS package check-in: 401f29a39d user: olr tags: fr, build, nodejs | |
14:04 | [core][njs][js] textformatter: rename few functions and attributs check-in: 6963981657 user: olr tags: core, njs, nodejs | |
13:56 | [njs] Add note in client doc check-in: 694fbfbe9e user: IllusionPerdu tags: njs, nodejs | |
Changes
Modified gc_lang/fr/modules-js/textformatter.js from [16ec62288b] to [920d8b7cad].
︙ | |||
263 264 265 266 267 268 269 | 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | - + - + - + - + - + | class TextFormatter { constructor (bDebug=false) { this.sLang = "fr"; this.bDebug = bDebug; //don't change this in external ;) |
︙ | |||
378 379 380 381 382 383 384 | 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | - + - + - + - + - - - - | } getDefaultOptions () { //we return a copy to make sure they are no modification in external return dTFDefaultOptions.gl_shallowCopy(); } |
Modified gc_lang/fr/nodejs/core/api.js from [a38bf9a7cd] to [a782304429].
︙ | |||
236 237 238 239 240 241 242 | 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | - - + + - + - + - - + + | return this.oTextFormatter.formatText(sText); } setTfOptions(dOptions) { if (!this.isInit.TextFormatter) { this.load(["TextFormatter"]); } |
︙ |