Brett Mathe
Member since Sep 1, 2014
- Profile: /members/12240-brett-mathe.htm
- Comments: 2
Recent Blog Comments By Brett Mathe
-
My Approach To Building AngularJS Directives That Bind To JavaScript Events
Posted on Sep 1, 2014 at 3:23 PM
@Brett, I found the issue. I'm not using jQuery. This worked using AngularJS JQLite window.angular.element($window).on('resize', function(){ $scope.$apply( updateImageCapacity ); }); // When the scope is destroyed, be sure to unbind // event ha... read more »
-
My Approach To Building AngularJS Directives That Bind To JavaScript Events
Posted on Sep 1, 2014 at 2:56 PM
I am getting $ is an undefined function on the $(window).on line in the directive. Do you know why I am getting this? I basically copy/pasted your code except I'm defining the directive in line on my app.module line. angular.module('myApp', []) .directive... paste... read more »