[AngularJS] Fail while trying to access UBER API - Unprocessable Entity

2016-08-26 Thread 'JayKay' via AngularJS
Hi @all, I'm just starting with Angular and as a first goal I thought it would make sense to realise the following userstory: *AS a user I want to see available UBER services in a certain location* Thus I already registered a UBER Dev-Account and obtained a Server Token and set up a minimum

[AngularJS] Re: $anchorScroll equivalent in Angular2 for Same page anchor navigation

2016-08-26 Thread Pallavi Darbhamulla
Hi Benny, Could you please release the version with the fix for this ussue: node_modules/ng2-simple-page-scroll/src/ng2-simple-page-scroll.directive.ts (35,71): error TS2339: Property 'changes' does not exist on type 'Router'. Thanks, Pallavi On Friday, May 20, 2016 at 2:33:44 PM UTC-6, Benny

[AngularJS] Urgent requirement for the position of Front End Web Developer @ WA-Washington/Seattle

2016-08-26 Thread poonam singh
Hi, *Currently, I am recruiting candidates for one of my requirement as mentioned below. If you have a matching profile, please send me the updated resume along with contact details at the earliest.* *Job Title* Front End Web Developer *Project Location* WA-Washington/Seattle *Duration*

[AngularJS] Router activation events

2016-08-26 Thread Daniel Guisinger
Hello, I'm looking for a way to receive events "globally" when the router has finished activating a route. Here is the situation I have. I've got two controls I am using for navigation. One is a navigation sidebar, the other is a breadcrumb control. The system I've built automates the

Re: [AngularJS] Attach Authorization Bearer JWT token for each API call

2016-08-26 Thread Kyle Thomas
Thanks Lucas, that worked perfectly! On Friday, August 26, 2016 at 11:52:59 AM UTC-5, Lucas Lacroix wrote: > > I had a similar question and never found a good answer. > I ended up creating my own service which is just a wrapper around the HTTP > service. It's a bit of boiler plate, but it works.

[AngularJS] Re: Import Vimeo.js on Angular 2 with TypeScript

2016-08-26 Thread Jorge Sanz Pérez
Cool! Thank you so much! I am trying it with editing my system.config.js! Let see if I get it! :-D El viernes, 26 de agosto de 2016, 9:18:35 (UTC+2), Zlatko Đurić escribió: > > The equivalent of that would be "import { Vimeo } from 'vimeo';". > > You might also need to tell your packager

Re: [AngularJS] Attach Authorization Bearer JWT token for each API call

2016-08-26 Thread 'Lucas Lacroix' via AngularJS
I had a similar question and never found a good answer. I ended up creating my own service which is just a wrapper around the HTTP service. It's a bit of boiler plate, but it works. Additionally, because I'm using OAuth2 tokens instead of JWT, I was able to add in the functionality of renewing the

Re: [AngularJS] Failed at the angular-car-app@1.0.0 start script 'concurrently "npm run tsc:w" "npm run lite" '

2016-08-26 Thread 'Lucas Lacroix' via AngularJS
Try: npm i concurrently --save-dev On Fri, Aug 26, 2016 at 12:44 PM Edson Lima wrote: > Estou iniciando meus estudo com Angular e estou seguinte este tutorial: > > http://ntakashi.net/angularjs-2-0iniciando-uma-aplicacao-e-ambiente/ > > Quando tento executar a aplicação

[AngularJS] Failed at the angular-car-app@1.0.0 start script 'concurrently "npm run tsc:w" "npm run lite" '

2016-08-26 Thread Edson Lima
Estou iniciando meus estudo com Angular e estou seguinte este tutorial: http://ntakashi.net/angularjs-2-0iniciando-uma-aplicacao-e-ambiente/ Quando tento executar a aplicação recebo este erro: npm ERR! Linux 3.13.0-87-generic npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "start" npm ERR! node

[AngularJS] Attach Authorization Bearer JWT token for each API call

2016-08-26 Thread Kyle Thomas
Is there a way to attach the Bearer token for each /api/ call out through something similar to an $httpProvider.interceptors in Angular 1? Right now I'm attaching it at every function call getUsers() { let jwt = Cookie.get('token'); let authHeader = new Headers(); if

[AngularJS] get var out of dynamic service distance matrix async

2016-08-26 Thread Raphael Burroni
hi there, i am in big trouble since 2 days ! i have a $scope.greeting[] ,it is a list of deliverer in my controller ! i want to had the distance between one origin and each deliverer in $scope.greeting[x].distance ! i make this code : var app = angular.module('PickleDispatch', ['ngMap']);

Re: [AngularJS] Send Message for other component

2016-08-26 Thread 'Lucas Lacroix' via AngularJS
It almost sounds like you want a modal dialog. If that works for you, you can check out the one available from bootstrap: http://valor-software.com/ng2-bootstrap/#/modals On Fri, Aug 26, 2016 at 12:39 AM Luan Garrido wrote: > Hello everybody. > > Im trying to send a

[AngularJS] Re: Is it possible to export HTML to PDF or generate pdf in AngularJs without Using Other JS reference like jSPDF, PHANtom,etc

2016-08-26 Thread rajesh tamire
Hi Markus, you can find proper documentation for using pdfMake in angular here.. http://gonehybrid.com/how-to-create-and-display-a-pdf-file-in-your-ionic-app/ However i need to export html to pdf in angular 2. is there any documentation for angular 2 ? On Wednesday, 24 August 2016 10:13:29

[AngularJS] Import Vimeo.js on Angular 2 with TypeScript

2016-08-26 Thread Zlatko Đurić
The equivalent of that would be "import { Vimeo } from 'vimeo';". You might also need to tell your packager (Systemjs, we pack?) where it can find 'vimeo'. -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop

[AngularJS] Js sliders present in home.html is not working after partition using $stateprovider method

2016-08-26 Thread Shaik Yunus
*index.html* *** *app.js* angular.module('App', [ 'ui.router' ]) .config( function ($stateProvider, $urlRouterProvider) { $urlRouterProvider.otherwise('/home'); $stateProvider .state('home', {