Posts by Victor Richa • 161 points
3 posts
-
3
votes3
answers2889
viewsA: Running my Angularjs application on some server
You can use npm’s http-server npm install -g http-server Go to your angular application folder and type http-server -a localhost -p 8000…
-
2
votes1
answer747
viewsA: How to trigger share options in Angularjs with Ionic?
Use ngCordova with the plugin Social Sharing For this just install ngCordova with Bower and add the plugin bower install ngCordova cordova plugin add…
-
1
votes1
answer1462
viewsA: How to search an Ionic Framework Angularjs list
You just need to change the way you use the filter along with "track by". ng-repeat="contato in contatos | filter:busca.search track by contato.codigo"