"use strict"; (function () { 'use strict'; angular.module('myitsmApp') .controller('EmailPopupWindowController', ['$scope', 'emailModel', function ($scope, emailModel) { $scope.emailModel = emailModel; var popupDetails = window.opener.popupDetails; $scope.emailInstance = popupDetails.emailWindow; }]); })();