Posts by Diego Oliveira • 106 points
3 posts
-
0
votes3
answers73
viewsA: Remove event handler after 3 click
The section below has an approach slightly different from the others cited, is used the design IIFE (Immediately-Invoked Function Expression). The idea is to avoid polluting the global context…
-
0
votes3
answers3827
viewsA: How to publish applications done in Node.js
You just need to add this snippet of code to your package.json: "scripts": { "start": "node app.js" } You can add numerous commands that run at various times in the lifecycle of your package. For…
-
9
votes11
answers97880
viewsA: Center image vertically within a div
If Internet Explorer 8 support is not required or the project is more flexible, you can also use the following code: .vertical-align { position: relative; top: 50%; transform: translateY(-50%); /*…