Posts by Guilherme Lessa • 61 points
3 posts
-
-1
votes1
answer288
viewsQ: First always empty input in Formgroup
The first input of the form does not load the value from the indexedDB, nor does it carry a new value typed for recording in the database. import { Component, OnInit } from '@angular/core'; import {…
-
1
votes2
answers190
viewsA: CSS SVG file does not perform Javascript function
I found a way to pass the contents of the SVG file directly into the CSS, so you can change the color without relying on JS within the SVG. I already pass the direct color in the property Fill.…
-
4
votes2
answers190
viewsQ: CSS SVG file does not perform Javascript function
I’m using an SVG as background-image, via css: #element { background-image: url('triangle.svg'); } Then inside the SVG arch I call a function in the onload because I need to pass RGB color…