1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-04 21:20:07 +02:00

fix search window

This commit is contained in:
s2
2019-06-06 15:56:42 +02:00
parent c5f9b551ab
commit 1313cff86a
21 changed files with 1297 additions and 0 deletions

27
app/node_modules/electron-find/example2/outer.html generated vendored Normal file
View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Outer</title>
<style>
.app{
height: 100%;
}
.outer{
padding: 16px;
}
</style>
</head>
<body>
<div class="app">
<div class="outer">
<h3>Is in app</h3>
<div>Main content</div>
</div>
<hr>
<webview id="webview1" src="./inner1.html"></webview>
<webview id="webview2" src="./inner2.html"></webview>
</div>
<script src="outer.js"></script>
</body>
</html>