fonteditor/demo/contoursCombine.html
2015-03-15 14:16:04 +08:00

32 lines
789 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>测试editor combine</title>
<script src="../dep/esl.js"></script>
<script src="../dep/jquery.min.js"></script>
<script src="../dep/clipper.js"></script>
<link rel="stylesheet" type="text/css" href="./css/editor.css">
<style id="font-face"></style>
</head>
<body>
<script>
require.config({
baseUrl: '../src',
paths: {
demo: '../demo/js',
}
});
define('jquery', $);
define('ClipperLib', window.ClipperLib);
</script>
<div id="render-view" class="render-view glyf-editor" oncontextMenu="return false"></div>
<script>
require(['demo/contoursCombine']);
</script>
</body>
</html>