Quellcode durchsuchen

Updated injectedJavaScriptBeforeContentLoaded docs

Updates `injectedJavaScriptBeforeContentLoaded` prop docs to mention it only works on iOS
Vasco Gonçalves vor 4 Jahren
Ursprung
Commit
2c5047c252
Es ist kein Benutzerkonto mit dieser Commiter-Email verbunden
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 3
    3
      docs/Reference.md

+ 3
- 3
docs/Reference.md Datei anzeigen

@@ -150,9 +150,9 @@ const INJECTED_JAVASCRIPT = `(function() {
150 150
 Set this to provide JavaScript that will be injected into the web page after the document element is created, but before any other content is loaded. Make sure the string evaluates to a valid type (`true` works) and doesn't otherwise throw an exception.
151 151
 On iOS, see [WKUserScriptInjectionTimeAtDocumentStart](https://developer.apple.com/documentation/webkit/wkuserscriptinjectiontime/wkuserscriptinjectiontimeatdocumentstart?language=objc)
152 152
 
153
-| Type   | Required |
154
-| ------ | -------- |
155
-| string | No       |
153
+|  Type  | Required | Platform |
154
+|  ----  | -------- | -------- |
155
+| string | No       | iOS      |
156 156
 
157 157
 To learn more, read the [Communicating between JS and Native](Guide.md#communicating-between-js-and-native) guide.
158 158