UNPKG

pip-webui

Version:

HTML5 UI for LOB applications

19 lines (14 loc) 506 B
/* global angular */ (function () { 'use strict'; var thisModule = angular.module('appMaterial.Flexbox', []); thisModule.controller('FlexboxController', function($scope, $rootScope) { $rootScope.$on('pipWindowResized', function (event, size) { console.log('Window width: ' + size.window.width + ' height: ' + size.window.height + ' size: ' + $scope.$size); }); } ); })();