restore composer.json, add mysqli extension
This commit is contained in:
39
public/vendor/editor/examples/bs2.html
vendored
Executable file
39
public/vendor/editor/examples/bs2.html
vendored
Executable file
@@ -0,0 +1,39 @@
|
||||
<!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 Lite - Bootstrap 2</title>
|
||||
|
||||
<!-- include jquery -->
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
|
||||
|
||||
<!-- include libs stylesheets -->
|
||||
<link rel="stylesheet" href="//stackpath.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css">
|
||||
<script src="//stackpath.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
|
||||
|
||||
<!-- include summernote -->
|
||||
<link rel="stylesheet" href="../summernote-lite.css">
|
||||
<script type="text/javascript" src="../summernote-lite.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 Lite with Bootstrap 2</h1>
|
||||
<p>
|
||||
<span class="label label-primary">jQuery v3.3.1</span>
|
||||
<span class="label label-info">Bootstrap v2.3.2</span>
|
||||
</p>
|
||||
<div class="summernote"></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user