Posts by Marcelo Formentão • 307 points
9 posts
-
0
votes2
answers439
viewsA: Auto Updater Electron
I recommend using the electron-builder for this, it has a documentation of publishing and configuration of the autoUpdater along with the build. Publishing options: Bintray Generic Server Github…
-
1
votes1
answer801
viewsQ: Insert an element into an array that contains an object
Hello, I would like to know how to insert an element inside an object of an array, in this case, when I add with the code below, the element is inserted as another index: this.array = [];…
-
1
votes1
answer60
viewsA: Responsive slider range on the phone, solving with mousedown and jquery mouseup
If possible to make your code available in a practical way we would be grateful, but in advance I can advance this code: // repeat scroll while holding down button repeater = function(b) {…
-
1
votes1
answer1607
viewsQ: Trigger for a Select
I would like to know if it is possible to execute a Trigger when a SELECT is performed in a given table, for example: CREATE TABLE IF NOT EXISTS "Conversa" ( "idConversa" SERIAL NOT NULL,…
-
2
votes2
answers1539
viewsA: load a specific form according to the selected radio button
The simplest way to do this would be: HTML <label>SELECIONE UMA OPÇÃO</label> <form id='form-id'> <label><input id='form1' value="A" name="opcao" type="radio">opcao…
-
4
votes1
answer55
viewsA: Background com Perdas
first On the image stay in the center, simply, you can use the following CSS code: What it does is basically expand the image to the entire context of the div in which it is, adjusting the height…
-
3
votes2
answers414
viewsA: square div with 45º angle
You can use the following code, not forgetting to use the three standards so that there are no problems with the other browsers: elemento{ transform: rotate(45deg); -ms-transform: rotate(45deg);…
-
0
votes10
answers360
viewsA: Organization of CSS
Use the second way while producing the code, on behalf of Indentation becomes easier to understand, when finishing the production of the same, use a "CSS Minifier" that will make the code more or…
-
2
votes1
answer93
viewsQ: Incompatibility of Javascript Code
I’m using a script to switch a block with Nav Tabs, the first part of the code works normally, but the part where I request the border-color and play to the other field is only working in Chrome,…