launchpad integration fix (#625)

* Update README.md

* launchpad integration fix
This commit is contained in:
oblomov 2023-11-06 13:30:22 +01:00 committed by GitHub
parent 18b915b0c3
commit 567748b75e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -13,8 +13,8 @@
*...offers a pure ABAP approach for developing UI5 apps, entirely without JavaScript, OData and RAP — similar to the past, when only a few lines of ABAP sufficed to display input forms and tables using Selection Screens & ALVs. Designed with a minimal system footprint, it works in both on-premise and cloud environments.*
#### Key Features
* **User-Friendly:** Implement just a single interface for a standalone UI5 application
* **100% ABAP:** Developing in pure ABAP (no JavaScript, DDL, EML or Customizing)
* **User-Friendly:** Implement just a single interface for a standalone UI5 application
* **Minimal System Footprint:** Based on a plain HTTP handler (no BSP, OData, CDS, BOPF or RAP)
* **Cloud and On-Premise Ready:** Works with both language versions (ABAP for Cloud, Standard ABAP)
* **Broad System Compatibility:** Runs on all ABAP releases (from NW 7.02 to ABAP 2311)

View File

@ -276,16 +276,16 @@ CLASS Z2UI5_CL_FW_HTTP_HANDLER IMPLEMENTATION.
` navCon.to(navConTo);` && |\n| &&
` break;` && |\n| &&
` case 'DRIVERJS_DRIVE':` && |\n| &&
` if( driver !== undefined && config !== undefined ) {` && |\n| &&
` if( driver !== undefined ) { if( config !== undefined ) {` && |\n| &&
` driverObj = driver(config);` && |\n| &&
` driverObj.drive();` && |\n| &&
` };` && |\n| &&
` } };` && |\n| &&
` break;` && |\n| &&
` case 'DRIVERJS_HIGHLIGHT':` && |\n| &&
` if( driver !== undefined && highlight_driver_config !== undefined && highlight_config !== undefined ) {` && |\n| &&
` if( driver !== undefined ) { if ( highlight_driver_config !== undefined ) { if (highlight_config !== undefined ) {` && |\n| &&
` driverObj = driver(highlight_driver_config);` && |\n| &&
` driverObj.highlight(highlight_config);` && |\n| &&
` };` && |\n| &&
` } }};` && |\n| &&
` break;` && |\n| &&
` }` && |\n| &&
` },` && |\n| &&