| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 | <!DOCTYPE html><html><head>	<meta charset="utf-8">	<title>KityMinder Editor - Powered By FEX</title>	<link href="favicon.ico" type="image/x-icon" rel="shortcut icon">	<!-- bower:css -->	<link rel="stylesheet" href="../bower_components/bootstrap/dist/css/bootstrap.css" />	<link rel="stylesheet" href="../bower_components/codemirror/lib/codemirror.css" />	<link rel="stylesheet" href="../bower_components/hotbox/hotbox.css" />	<link rel="stylesheet" href="../node_modules/kityminder-core/dist/kityminder.core.css" />	<link rel="stylesheet" href="../bower_components/color-picker/dist/color-picker.min.css" />	<!-- endbower -->	<link rel="stylesheet" href="kityminder.editor.min.css">	<style>		html,		body {			margin: 0;			padding: 0;			height: 100%;			overflow: hidden;		}		h1.editor-title {			background: #393F4F;			color: white;			margin: 0;			height: 40px;			font-size: 14px;			line-height: 40px;			font-family: 'Hiragino Sans GB', 'Arial', 'Microsoft Yahei';			font-weight: normal;			padding: 0 20px;		}		div.minder-editor-container {			position: absolute;			top: 0px;			bottom: 0;			left: 0;			right: 0;		}	</style></head><body ng-app="kityminderDemo" ng-controller="MainController">	<h1 class="editor-title" style=" display:none">KityMinder Editor - Powered By FEX</h1>	<kityminder-editor on-init="initEditor(editor, minder)"></kityminder-editor></body><!-- bower:js --><script src="../bower_components/jquery/dist/jquery.js"></script><script src="../bower_components/bootstrap/dist/js/bootstrap.js"></script><script src="../bower_components/angular/angular.js"></script><script src="../bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script><script src="../bower_components/codemirror/lib/codemirror.js"></script><script src="../bower_components/codemirror/mode/xml/xml.js"></script><script src="../bower_components/codemirror/mode/javascript/javascript.js"></script><script src="../bower_components/codemirror/mode/css/css.js"></script><script src="../bower_components/codemirror/mode/htmlmixed/htmlmixed.js"></script><script src="../bower_components/codemirror/mode/markdown/markdown.js"></script><script src="../bower_components/codemirror/addon/mode/overlay.js"></script><script src="../bower_components/codemirror/mode/gfm/gfm.js"></script><script src="../bower_components/angular-ui-codemirror/ui-codemirror.js"></script><script src="../bower_components/marked/lib/marked.js"></script><script src="../bower_components/kity/dist/kity.min.js"></script><script src="../bower_components/hotbox/hotbox.js"></script><script src="../bower_components/json-diff/json-diff.js"></script><script src="../node_modules/kityminder-core/dist/kityminder.core.min.js"></script><script src="../bower_components/color-picker/dist/color-picker.min.js"></script><!-- endbower --><script src="kityminder.editor.min.js"></script><script>	angular.module('kityminderDemo', ['kityminderEditor'])		.config(function (configProvider) {			configProvider.set('imageUpload', '../server/imageUpload.php');		})		.controller('MainController', function ($scope) {			$scope.initEditor = function (editor, minder) {				window.editor = editor;				window.minder = minder;				// setTimeout(function () {				// 	window.editor.minder._rc.setTranslate([(window.editor.minder._lastClientSize.width - window.editor.minder._root._contentBox.width) / 2, 120]);				// }, 500)			};		});	document.domain = document.domain.split(".").slice(-2).join(".");</script></html>
 |