Thứ Ba, 14 tháng 2, 2017

Browser resize function with AngularJS

var app = angular.module('myApp',[]);

app.controller ('controllerName',function($scope, $window) {

  var appWindow = angular.element($window);

  appWindow.bind('resize', function () {
   console.log('Resized your browser')
  });
  
});

Không có nhận xét nào:

Đăng nhận xét