Skip to content

Instantly share code, notes, and snippets.

@mosfet1kg
Created March 4, 2017 09:07
Show Gist options
  • Save mosfet1kg/fc01f4731c7f00a4a5669b333a524b6a to your computer and use it in GitHub Desktop.
Save mosfet1kg/fc01f4731c7f00a4a5669b333a524b6a to your computer and use it in GitHub Desktop.
angular window resize evet
// In your controller
var w = angular.element($window);
$scope.$watch(
function () {
return $window.innerWidth;
},
function (value) {
$scope.windowWidth = value;
},
true
);
w.bind('resize', function(){
$scope.$apply();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment