Posts by David Costa • 393 points
11 posts
-
0
votes1
answer119
viewsA: Vue-router + firebase
There is a scopo problem probably, try to do this way: login() { firebase.auth().signInWithEmailAndPassword(this.email, this.password).then( (user) => { this.$router.push({name: 'dashboard'}) },…
-
0
votes3
answers65
viewsA: How to use the output value
Hello, I tweaked your code, see if that’s what you were trying to do. var button = document.getElementById('BUTTON'); var inputRaio = document.getElementById('raio') var inputArea =…
-
0
votes1
answer544
viewsA: Github with automatic user and password
What you need to understand is that there are two ways to use git, no matter where the repository is, which are: via https and ssh, if you use https, will need to put the password every time you use…
githubanswered David Costa 393 -
0
votes1
answer345
viewsA: Migrate template to bootstrap
Basically if I were to put this page to bootstrap it’s more or less like this I would do. In the example below I used third party css and js files. But in your case I advise Download. EDITED: I’m…
-
2
votes1
answer305
viewsA: Return and reply to email submission in the layout
I think I understand what you want now. Let’s just show a STATUS of the action of SENDING AN EMAIL. There are several ways to do this, I’ll tell you how I would. Imagine a SALES LETTER: Hello,…
-
1
votes1
answer677
viewsA: Column offset in bootstrap
Create a Class css for the items, and set a height for those items. Of this <div class="col-md-3 col-xs-6" align="center"> <div class="col-lg-12" align="center"> <img…
-
1
votes1
answer1341
viewsA: Check if a parameter passed by the url exists within the View
From what I understand, you are wanting to save a certain setting in the session. But, there is an error at the time that data is being saved in session. I think that would be the weather: public…
-
2
votes3
answers271
viewsA: How to optimize SQL queries containing SELECT-related DELETE?
What you can do is increase the PHP processing timeout. Before this processing add with the function set_time_limit($tempo) . <?php set_time_limit(0); //para um tempo infinito…
-
10
votes4
answers4295
viewsQ: Way to make a comparison between three variables
I need to make a comparison between three variables in my PHP code. if($a == $b == $c) { return true; } else { return false; } I have a lot of ideas on how to do that, but I want to know the best…
-
5
votes4
answers7550
viewsQ: jQuery identifying jQuery’s own change
When click on "put", the field is filled with the information "changed", but when this happens, the Next change does not identify this change. In practice it doesn’t work, how can I make it work?…
jqueryasked David Costa 393 -
1
votes8
answers4914
viewsA: Do not allow saving image of a web page
It is not possible to do this via code, you will have to find another way out to do this. For example put a div on top of the image with the same dimensions. So when it clicks will not appear the…