If running cypress in headless mode, the browser default language might not be set correctly, which causes assertions for translation values to fail.
Continue reading How to set browser default language in Cypress
Category: Allgemein
Multiple requests in order and emit once in Angular
How can you make multiple HttpClient requests in order and emit only one value to the subscription?
Continue reading Multiple requests in order and emit once in Angular
Remove Angular Material icon button focus
The Angular Material component library show a grey background for mat-icon-button elements. The following CSS style disables the focused background.
Continue reading Remove Angular Material icon button focus
Change body class in React app components
Manipulating the body class attribute in react app’s is not straight forward, because of it’s nested components architecture. The workaround demonstrated in this article helps out.
Using named exports for 3rd party libs in Ionic2 rollup build
The Ionic dev team has changed the build processes in the beta and release candidate phases quite a bit and I had troubles to figure out solutions for including third party libs. Here is one of them.
Continue reading Using named exports for 3rd party libs in Ionic2 rollup build
RTE in custom extension not shown after update to Typo3 7
After updating a website containing custom extensions built by the extension_builder I encountered the problem of my text fields not showing the RTE anymore.
Continue reading RTE in custom extension not shown after update to Typo3 7
Typo3 Ajax request with pagetype
Fetching data via ajax from your typo3 website frontend can be done with an eid script or a custom typoscript page object targeted with it’s own pagetype. The latter is explained in this post.