Posts by Matheus Ribeiro • 45 points
5 posts
-
0
votes0
answers17
viewsQ: Pouchdb is not set
Hello, I am using Pouchdb on my website to store information, it is being started in index.html var db = new PouchDB('teste'); It’s working exactly as I expected it to work, it’s been very useful…
-
0
votes1
answer24
viewsA: Computed property Polymer
I managed to solve, instead of creating computed properties I made a function _pricePlatform(preco) { if (preco == undefined) { preco = 0; } return (preco != 0) ? 'R$ ' +…
-
0
votes1
answer24
viewsQ: Computed property Polymer
Greetings. My problem is this. I have a product detail page. It is accessed after clicking on a specific product on another listing page, the content is displayed through the product ID. So far so…
-
2
votes2
answers130
viewsQ: Filter through the href
Well, I’m new to using Javascript and I’m having some difficulties. I have a box that has 6 links, this involved in a gift-repeat, IE, are many 'boxes' with 6 links inside. I need to check if inside…
-
2
votes1
answer48
viewsQ: How to take the value of multiple items and change according to my if
I have a list of items (that comes from the database), I need to compare each item of one of these and if the value is 0 change the text. Below is the function I’m trying to use to change the value…