From 2800aee07ad3f0a2f14a3edbec8321d6a3deae6b Mon Sep 17 00:00:00 2001 From: Sebastian Klaus Date: Wed, 6 Apr 2022 09:47:21 +0200 Subject: [PATCH] fix: removed semicolon as it breaks the app if the example is used (#13369) --- apidoc/Titanium/UI/WebView.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apidoc/Titanium/UI/WebView.yml b/apidoc/Titanium/UI/WebView.yml index c2d7947faa8..63f3a235ac6 100644 --- a/apidoc/Titanium/UI/WebView.yml +++ b/apidoc/Titanium/UI/WebView.yml @@ -182,7 +182,7 @@ description: | ``` js var win = Ti.UI.createWindow({ - backgroundColor: 'white'; + backgroundColor: 'white' }); var verticalView = Ti.UI.createView({layout: 'vertical', width: "100%", height: "100%"});