Posts by Mateus Koppe • 111 points
3 posts
-
1
votes1
answer194
viewsA: Responsive website
Leaving a responsive site is not like adding a Feature to your site, so it takes a specific styling practice for it, things ranging from a good use of measurement units (%, in, px, vw, etc.) to a…
-
0
votes2
answers152
viewsA: Angular 1 - Using bindings in controller - Component
I was able to access the data using $timeOut, thus: $timeout(function () { console.log(vm.type); console.log(vm.urlId); }) Perhaps there is some delay for Angular to recognize the parameters. This…
-
0
votes2
answers152
viewsQ: Angular 1 - Using bindings in controller - Component
I am using Angularjs, in creating a Component I need to access the bindings in my controller. In html I’m calling Component so: <component type='tipo' urlid='meuid'></component> I’m…