From 4dbf845a901b5317fbd4214222307b7a597d4fe2 Mon Sep 17 00:00:00 2001 From: Cameron Crothers Date: Thu, 23 Feb 2012 21:29:24 +1100 Subject: [PATCH] More typeos --- Topics/windows.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Topics/windows.md b/Topics/windows.md index fa7f368..de146b0 100644 --- a/Topics/windows.md +++ b/Topics/windows.md @@ -38,13 +38,13 @@ Most window properties can be changed: var newWidth = parseInt(prompt("New window width:")); // Keep KitchenSink functional. - if (!isNaN(newWidth) && newWidth > 300) + if (!isNaN(newWidth) && newWidth > 300) Titanium.UI.currentWindow.setWidth(newWidth); var newHeight = parseInt(prompt("New window height:")); // Keep KitchenSink functional. - if (!isNaN(newHeight) && newHeight > 300) + if (!isNaN(newHeight) && newHeight > 300) Titanium.UI.currentWindow.setHeight(newHeight); // Modify the bounds of the window all at once