Olivier Combe
Member since Dec 9, 2013
- Profile: /members/11460-olivier-combe.htm
- Comments: 7
Recent Blog Comments By Olivier Combe
-
The User Experience (UX) Of Having One Computer Monitor
Posted on May 5, 2014 at 8:39 AM
I use two monitors, one is in front of me and has all my focus, the second one is on the side and I use it when I need to see the preview of what I'm coding (<3 livereload)... read more »
-
Using The $http Service In AngularJS To Make AJAX Requests
Posted on Apr 25, 2014 at 7:54 AM
@Ben, that's nice ! I'll take a closer look once I need something like that :)... read more »
-
Using The $http Service In AngularJS To Make AJAX Requests
Posted on Apr 25, 2014 at 7:24 AM
@Ben, that would be nice to gather all your last articles about $http services into one module and publish it on github :)... read more »
-
Using The $http Service In AngularJS To Make AJAX Requests
Posted on Apr 22, 2014 at 7:26 AM
By the way, when you use $resource you get a resource object in the callbacks instead of you clean response object (it's an object decorated with properties that you may not want) and it will polute your database (or localstorage or else) if you store it as it is. With $http you access the .data and... read more »
-
$scope.$evalAsync() vs. $timeout() In AngularJS
Posted on Apr 9, 2014 at 9:05 AM
Oh very interesting, thanks for the tip. Besides, I think that using a timeout for that kind of things seems a bit like a dirty hack (kinda like the safeApply). This seems more likely to be the correct intended usage :)... read more »
-
Using $scope.$digest() As A Performance Optimization In AngularJS
Posted on Mar 24, 2014 at 5:15 AM
Oh that's a nice catch, I'll definitively use it next time I can :)... read more »
-
Using Track-By With ngRepeat In AngularJS 1.2
Posted on Dec 9, 2013 at 4:55 AM
Thanks for this article, I actually had a problem where updates were affecting the object in drag & drop (the DOM element was deleted / recreated, and the dragging element was disappearing), and the "track by" fixed it ! :)... read more »