Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fixed build warning for TypeScript String to Number
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkrohling committed Aug 26, 2015
1 parent b49ec6c commit cd2d6ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module AccessPortal {

export var AccessPortalMainController = _module.controller('AccessPortal.AccessPortalMainController', [
'$window', ($window) => {
var iframeHeight = parseInt($window.innerHeight * 0.8, 10);
var iframeHeight : number = $window.innerHeight * 0.8;

['myCasesWindow', 'openCaseWindow', 'searchWindow'].forEach((iframeId) => {
var iframeWindow = document.getElementById(iframeId);
Expand Down

0 comments on commit cd2d6ca

Please sign in to comment.