I'm setting up a website where the user can request that content be posted on his timeline without him needing to be sharing. Well I had the following doubt, seeing the return of this link: link , I would like to know how I can do to send a pos...
I need to make sure that when "filling ..." is printed by setInterval , it's exactly the same place as the first impression. It turns out you're going down or forward. Is there any way to do this, print several times in the same place in 3...
I'm trying to use this module that is available in the github and I think this module is very complete, it provides the masks that I need, however its documentation is very confusing.
The question is as follows, I cloned the gihub project a...
I have an ng-repeat that returns me a list.
Every line, I have a default text that appears if a variable is > 0
So far so good.
How do I add in the filter only show the record when the default text is filled in?
The content is in...
With the following code, I am saying that in the second array contained in the object $scope.listademercadoria there is the property "quantity", and I am declaring it as value 0.
$scope.listademercadoria[1].quantidade = 0;
Is there a...
I have an API that returns me a PDF file.
I want to make angular hitting this route and forcing the download of the PDF file.
Today I do this:
var blob = new Blob([arquivo], {type: "application/pdf"});
saveAs(blob, 'arquivo.pdf');
The...
I have some functions in jquery that would normally be in a .js file, but when I use Angular where should I put following the good practices?
Example: I have a function that determines whether or not my Header is hidden depending on the size...
Well, I'm going to be here for an interview.
$rootScope.$on("timer", updateApanha());
var arquivoJSON = (JSON.parse(window.sessionStorage.getItem('timeUpdate'))*1000);
console.log(tempoDeAtualizacao);
function updateApanha(){
setInterval(g...