replaced wysihtml5 code with summernote in mailbox/compose

pull/2149/head
REJack 2019-07-01 02:05:25 +02:00
parent e40b8c5171
commit 9dfbc32be7
No known key found for this signature in database
GPG Key ID: 9F3976CC630CC888
1 changed files with 5 additions and 5 deletions

View File

@ -13,8 +13,8 @@
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"> <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style --> <!-- Theme style -->
<link rel="stylesheet" href="../../dist/css/adminlte.min.css"> <link rel="stylesheet" href="../../dist/css/adminlte.min.css">
<!-- bootstrap wysihtml5 - text editor --> <!-- summernote -->
<link rel="stylesheet" href="../../plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css"> <link rel="stylesheet" href="../../plugins/summernote/summernote-bs4.css">
<!-- Google Font: Source Sans Pro --> <!-- Google Font: Source Sans Pro -->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
</head> </head>
@ -766,13 +766,13 @@
<script src="../../dist/js/adminlte.min.js"></script> <script src="../../dist/js/adminlte.min.js"></script>
<!-- AdminLTE for demo purposes --> <!-- AdminLTE for demo purposes -->
<script src="../../dist/js/demo.js"></script> <script src="../../dist/js/demo.js"></script>
<!-- Bootstrap WYSIHTML5 --> <!-- Summernote -->
<script src="../../plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js"></script> <script src="../../plugins/summernote/summernote-bs4.min.js"></script>
<!-- Page Script --> <!-- Page Script -->
<script> <script>
$(function () { $(function () {
//Add text editor //Add text editor
//$('#compose-textarea').wysihtml5() $('#compose-textarea').summernote()
}) })
</script> </script>
</body> </body>