Advertisement
Guest User

wy

a guest
Aug 6th, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <style type="text/css">
  2. .editor {
  3. border: 1px solid blue;
  4. padding: 10px;
  5. }
  6. </style>
  7.  
  8. <div contenteditable="true" class="editor"><h2>Editor Contents here</h2></div>
  9.  
  10. <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.0.min.js"></script>
  11. <script type="text/javascript" src="http://fusiongrokker.com/demo/wysihtml5/bootstrap3-wysihtml5.all.min.js"></script>
  12. <link href="http://fusiongrokker.com/demo/wysihtml5/bootstrap3-wysihtml5.min.css" rel="stylesheet" type="text/css" />
  13. <link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
  14. <link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  15.  
  16. <script type="text/javascript">
  17.  
  18. $(function(){
  19. $(".editor").wysihtml5({
  20. toolbar: {
  21. "font-styles": true
  22. ,"emphasis": true
  23. ,"lists": true
  24. ,"html": true
  25. ,"link": true
  26. ,"image": true
  27. ,"color": false
  28. ,"blockquote": false
  29. ,"outdent": false
  30. ,"indent": false
  31. ,"size": 'sm'
  32. ,"fa": true
  33. }
  34. });
  35. });
  36.  
  37. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement