Julien Bouquillon
Member since Apr 28, 2013
- Profile: /members/10855-julien-bouquillon.htm
- URL: http://blog.revolunet.com
- Comments: 3
Recent Blog Comments By Julien Bouquillon
-
Triggering $digest Phases In Related Directives In AngularJS
Posted on May 29, 2014 at 8:39 AM
Hey Thanks for sharing your interesting insights and the workarounds :) AngularJS strengths for small apps are a weakness for big apps and you have to workaround with custom directives and an event bus. BTW you'd better use $rootScope.$emit and $rootScope.$on VS the expensive broadcast, as explai... read more »
-
Accessing $scope On The DOM Using AngularJS
Posted on May 7, 2013 at 11:07 AM
Hi Ben, About extracting the ngRepeat expression, why not simply extract it from the node attributes it in the compile phase instead of parsing the comments ? eg: var repeatExpression = tElement.find('span')[0].attributes['ng-repeat'].nodeValue, collectionName = repeatExpression.match( /^(... read more »
-
Exploring Directives, $scope, DOM Rendering, And Timing In AngularJS
Posted on Apr 28, 2013 at 5:25 PM
Thanks for your interesting in-depth AngularJS articles ! Would be nice to make more compact code though :)... read more »