Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

王仕雄 / wangsx-test

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • wangsx-test
  • ..
  • index
  • page.html
  • wangsx's avatar
    初始化提交 · 16a9e9da
    wangsx committed Jun 26, 2019
    16a9e9da
page.html 381 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<body>

	<div id="content" class="summernote"></div>

	<script type="text/javascript" th:inline="javascript">
		$().ready(function() {
			$('.summernote').summernote({
				lang : 'zh-CN'
			});
			var content = /*[[${bContent.content}]]*/
			$('#content').code(content);
			$('.summernote').destroy();
		});
	</script>
</body>
</html>