Quellcode durchsuchen

Merge branch 'master' into master

Thibault Malbranche vor 6 Jahren
Ursprung
Commit
ec862e8328
Es ist kein Benutzerkonto mit dieser Commiter-Email verbunden
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 1
    1
      package.json
  2. 1
    1
      typings/index.d.ts

+ 1
- 1
package.json Datei anzeigen

@@ -8,7 +8,7 @@
8 8
     "Thibault Malbranche <malbranche.thibault@gmail.com>"
9 9
   ],
10 10
   "license": "MIT",
11
-  "version": "2.11.0",
11
+  "version": "2.12.0",
12 12
   "homepage": "https://github.com/react-native-community/react-native-webview#readme",
13 13
   "scripts": {
14 14
     "test:ios:flow": "flow check",

+ 1
- 1
typings/index.d.ts Datei anzeigen

@@ -436,5 +436,5 @@ export class WebView extends Component<WebViewSharedProps> {
436 436
   public reload: () => void;
437 437
   public stopLoading: () => void;
438 438
   public postMessage: (msg: string) => void;
439
-  public injectJavaScript: (js: string) => void
439
+  public injectJavaScript: (js: string) => void;
440 440
 }