-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
90 lines (63 loc) · 2.81 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<head>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/codemirror/lib/codemirror.js"></script>
<link rel="stylesheet" href="bower_components/codemirror/lib/codemirror.css">
<script src="bower_components/codemirror/mode/xml/xml.js"></script>
<script src="jquery.codemirror.min.js"></script>
<link rel="stylesheet" href="jquery.codemirror.css">
<style>
.code-snippet-group-1 {
vertical-align:top;
margin: 10px;
width: 250px;
border: 1px solid black;
display: inline-block;
}
.code-snippet-group-2 {
margin: 10px;
width: 802px;
height: 150px;
border: 1px solid black;
}
.code-snippet-group-3 {
margin: 10px;
width: 802px;
height: 150px;
border: 1px solid black;
}
.codemirror-buttons-wrapper {
z-index: 100;
}
</style>
</head>
<body>
<h3>'jquery.codemirror' Demo</h3>
<div class="code-snippet-group-1" first style="min-height:100px;"></div>
<div class="code-snippet-group-1" second
codemirror-config='{"cursorHeight": ".5", "autofocus": true, "value": " Hello world"}'></div>
<div class="code-snippet-group-1" third jquery-codemirror-config='{"height":"inherit"}' style="height:150px;"></div>
<div class="code-snippet-group-2" jquery-codemirror='{"height":"inherit"}' codemirror='{"firstLineNumber": -5}'></div>
<div class="code-snippet-group-3"></div>
</body>
<script>
$(function () {
$('.code-snippet-group-1').codemirrorInit();
// codemirror() returns setValue(string), getValue(), setOption(option, value), setOptions(optionsObject)
console.log($('.code-snippet-group-1[second]').codemirror().getValue());
// Original CodeMirror object can be accessed by $.data(element, 'codemirror')
console.log($.data($('.code-snippet-group-1[second]')[0], 'codemirror').getValue());
// Iterate elements
$('.code-snippet-group-1').each(function (key, element) {
if (element !== $('.code-snippet-group-1[second]')[0]) {
$(element).codemirror().setValue('Any string');
var value = $(element).codemirror().getValue();
$.data(element, 'codemirror').setValue(value + ' here');
}
});
$('.code-snippet-group-1[first]').codemirror().setOption('lineNumbers', false);
$('.code-snippet-group-1[third]').codemirror().setOptions({readOnly: true, firstLineNumber: 3});
$('.code-snippet-group-2').codemirrorInit({value: "<div> Hello world </div>\n\n\n"});
$('.code-snippet-group-3').codemirrorInit({value: "<div> Hello world </div>"}, {height: "inherit"});
});
</script>