Posts by Bruno João • 176 points
3 posts
-
1
votes1
answer508
viewsA: How to show "loading" screen
You must create a service e.g CarregandoComponentService and carry it on your app.module. Thus it will become a Singleton in its application and any subcomponent will have access to the same…
-
1
votes4
answers549
viewsA: Element does not take the parent background
If you don’t need IE8 or earlier browser support, just use background: transparent; in the element that must "inherit" the color. For example: .question-title{ font-family:'arial'; font-size: 40px;…
cssanswered Bruno João 176 -
4
votes1
answer532
viewsA: CSRF validation giving error after a time without use
The answer to your question is here: https://ellislab.com/forums/viewthread/207249/#964738 Basically, you should extend the Ci_security class. To do this, create a file called My_security.php in…