-
Notifications
You must be signed in to change notification settings - Fork 5
/
lecture_17_debug.html
51 lines (47 loc) · 1.95 KB
/
lecture_17_debug.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Debug tools</title>
<link rel="stylesheet" href="css/reveal.css"> <!--slide style-->
<link rel="stylesheet" href="css/theme/noveo.css" id="theme"> <!--noveo theme-->
<link rel="stylesheet" href="lib/css/magula.css"> <!--code highlight-->
</head>
<body>
<div id="hidden" style="display: none">
<div id="overlay">
<div id="header-left"></div>
<div id="header-right"></div>
<div id="footer-right"></div>
</div>
</div>
<div class="reveal">
<div class="slides">
<section data-background-image="css/theme/img/background_title.svg"
data-background-position="right bottom"
data-background-size="688px 660px"
class="noveo-title center">
<h1>Отладка приложений</h1>
<div class="title-separator"></div>
<h2>автор:</h2>
<p>Александр Вайцеховский</p>
</section>
<section id="code"
data-markdown="lecture/debug/code.md"
data-separator-vertical="^\r?\n------\r?\n$"></section>
<section id="view"
data-markdown="lecture/debug/view.md"
data-separator-vertical="^\r?\n------\r?\n$"></section>
<section id="instruments"
data-markdown="lecture/debug/instruments.md"
data-separator-vertical="^\r?\n------\r?\n$"></section>
</div>
</div>
<script src="lib/js/head.min.js"></script> <!--HeadJS functions-->
<script src="js/reveal.js"></script> <!--RevealJS functions-->
<script src="js/config.js"></script> <!--RevealJS config-->
<script src="lib/js/jquery-3.2.1.min.js"></script>
<script src="js/printpdf.js"></script>
</body>
</html>