[AngularJS] Re: Keeping the static files secure

2016-11-26 Thread Yoav Luft @ Matific
You can use Webpack's code splitting capabilities to split your SPA to login, and then load the rest after the user had logged in. This is assuming that your static file server has some kind of authorization support. This approach is very good

Re: [AngularJS] Re: Data binding inside JavaScript string, not happening.

2016-11-26 Thread Andrei Zhitkov
Check this out : AI spambots in action. :-) On Sat, Nov 26, 2016 at 5:43 AM, wrote: > There is an opportunity to set on similar object separation (it is about > setting text inside a frame and implement it as a single object) like these > ones that were used on this

[AngularJS] ng-src

2016-11-26 Thread kempiloko
https://jsfiddle.net/es1L24nh/ Check fiddle. The image of the first comment does not load, but the after the first comment all the other profile pictures will load successfully. How does that comes. In the console log the right path is showing up. -- You received this message because you

[AngularJS] problem with async requests

2016-11-26 Thread skillnte
app.service('cityService',['$http',function($http){ this.cities = ''; this.get = function(){ $http({ method : 'get', url : API_SERVER + 'city/' }).success(function(response){ console.log(response); return response; }).error(function(response){ console.log(response); }); }; }]); I am trying to

[AngularJS] Re: Data binding inside JavaScript string, not happening.

2016-11-26 Thread marian . musialek92
There is an opportunity to set on similar object separation (it is about setting text inside a frame and implement it as a single object) like these ones that were used on this page: https://zoptamo.com/uk/s-mma-c-uk but in Angular? This knowledge is needed for similar project of catalog site

[AngularJS] AngularJS routing problem

2016-11-26 Thread Džejlan Muharemović
Hello everyone I have problem with angular routing it doesn't accept route parameter.I have route defined like /resetPassword/:code and this :code parameter is password reset code generated by Asp .Net identity and looks something like this

[AngularJS] Re: How do I use Kris Kowal's Q instead of jQuery's Deferred implementation?

2016-11-26 Thread marian . musialek92
There is an opportunity to set on similar object separation (it is about setting text inside a frame and implement it as a single object) like these ones that were used on this page: https://zoptamo.com/uk/s-mma-c-uk but in Angular? This knowledge is needed for similar project of catalog site

[AngularJS] Re: Keeping the static files secure

2016-11-26 Thread Sander Elias
Hi Pāvils, If I would have stuff that's really important, I would split off the authentication into its own separate page. take it outside of your spa. Then once authenticated, give them access to the full spa. Regards Sander -- You received this message because you are subscribed to the

[AngularJS] data transfer

2016-11-26 Thread Vipul Singh
how to send data from one component to another component using router in angular 2 , i tried but giving me undefined value please help me out -- You received this message because you are subscribed to the Google Groups "Angular" group. To unsubscribe from this group and stop receiving emails

[AngularJS] Keeping the static files secure

2016-11-26 Thread Pāvils Jurjāns
A veteran web developer here, so need some philosophy update here, now when I start developing in Angular 2. So I'm going for the architecture where all the Angular 2 app is served as bunch of static files (bundled by webpack, but static nevertheless) and all the client-server communication