fonteditor/demo/ttfparse.html
2014-10-04 15:39:26 +08:00

28 lines
472 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>font编辑器</title>
<script src="../dep/esl.js"></script>
<script src="../dep/jquery.min.js"></script>
</head>
<body>
<input id="upload-file" type="file">
<script>
require.config({
baseUrl: '../src',
paths: {
demo: '../demo/js',
}
});
define('jquery', $);
</script>
<script>
require(['demo/ttfparse']);
</script>
</body>
</html>