100 lines
1.4 KiB
HTML
Executable File
100 lines
1.4 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<title>Summernote - Bootstrap 3</title>
|
|
|
|
<!-- include jquery -->
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"></script>
|
|
|
|
<!-- include libs stylesheets -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="//netdna.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.css"
|
|
/>
|
|
<script src="//netdna.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$(".summernote").summernote({
|
|
height: 400,
|
|
tabsize: 2,
|
|
followingToolbar: true
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div style='float:right;'>
|
|
<a href='bs4.html'>Bootstrap4</a>
|
|
/
|
|
<a href='lite.html'>Lite</a>
|
|
/
|
|
<a href="examples/">Example</a>
|
|
</div>
|
|
<h1>Summernote with Bootstrap 3 </h1>
|
|
<p>
|
|
<span class="label label-primary">jQuery v3.4.1</span>
|
|
<span class="label label-info">Bootstrap v3.4.1</span>
|
|
</p>
|
|
<div class="summernote"></div>
|
|
<pre>
|
|
Scroll page to see sticky toolbar.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
End of document.
|
|
</pre
|
|
>
|
|
</div>
|
|
</body>
|
|
</html>
|