-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModule.NewLine.htm
More file actions
59 lines (50 loc) · 1.39 KB
/
Module.NewLine.htm
File metadata and controls
59 lines (50 loc) · 1.39 KB
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
52
53
54
55
56
57
58
59
<!DOCTYPE HTML>
<html>
<head>
<title>Les sauts de ligne</title>
<link rel="stylesheet" type="text/css" href="src/css/styles.css">
<link rel="stylesheet" type="text/css" href="src/css/syntaxes.css">
<style>
.editor {
width:100%;
height:400px;
}
#eResult1 {
border: 1px solid #000;
}
</style>
</head>
<body spellcheck="false">
<a href="./index.htm">index</a>
<h1>Les sauts de ligne</h1>
<p>.</p>
<div><h2>Diagramme</h2>
<img src="diagram/Class.NewLine.gif">
</div>
<div><h2>Aperçu</h2>
<textarea id="eSource" wrap="off" style="width:45%; height:400px; display:none;">
</textarea>
<div id="eEditeur1"></div>
</div>
<script src="shared.js"></script>
<script src="src/js/Editor.js"></script>
<script src="src/js/Commands.js"></script>
<script src="src/js/KeyBoard.js"></script>
<script src="src/js/Selection.js"></script>
<script src="src/js/UndoStack.js"></script>
<script src="src/js/Syntax.js"></script>
<script src="src/js/Brackets.js"></script>
<script src="src/js/Fold.js"></script>
<script src="src/js/TextMarker.js"></script>
<script>
_( 'eEditeur1,eSource' )
var oChrono = new Chrono
var oEditor = new Editor ( eEditeur1, { sSyntax:'JS' })
var D = oEditor.newDoc( '', eSource.value )
oEditor.execCommand( 'FOLD_LEVEL_3' )
</script>
<link rel="stylesheet" type="text/css" href="src/toc.css">
<script src="src/toc.js"></script>
<script>setTOC("Module.NewLine.htm")</script>
</body>
</html>