UNPKG

pip-webui

Version:

HTML5 UI for LOB applications

19 lines (13 loc) 517 B
/** * @file Sample simple layout * @copyright Digital Living Software Corp. 2014-2015 */ (function (angular) { 'use strict'; var thisModule = angular.module('app', ['ngMaterial', 'pipLayout']); thisModule.controller('AppController', function ($scope, $rootScope) { // $rootScope.$on('pipWindowResized', function (event, size) { // console.log('Window width: ' + size.window.width + ' height: ' + size.window.height); // }); }); })(window.angular);