90 lines
1.5 KiB
HTML
90 lines
1.5 KiB
HTML
<!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.3.1/jquery.js"></script>
|
|
|
|
<!-- include libs stylesheets -->
|
|
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css" />
|
|
<script src="//netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.js"></script>
|
|
|
|
<!-- include summernote -->
|
|
<link rel="stylesheet" href="../dist/summernote.css">
|
|
<script type="text/javascript" src="../dist/summernote.js"></script>
|
|
|
|
<link rel="stylesheet" href="example.css">
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('.summernote').summernote({
|
|
height: 300,
|
|
tabsize: 2
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Summernote with Bootstrap 3</h1>
|
|
<p>
|
|
<span class="label label-primary">jQuery v3.3.1</span>
|
|
<span class="label label-info">Bootstrap v3.3.7</span>
|
|
</p>
|
|
<div class="summernote"></div>
|
|
<pre>
|
|
Scroll page to see sticky toolbar.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
End of document.
|
|
</pre>
|
|
</div>
|
|
</body>
|
|
</html>
|