zotero/resource/tinymce/integration.html

48 lines
1 KiB
HTML
Raw Normal View History

2008-09-24 23:44:34 +00:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2013-03-31 20:25:13 -04:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2008-09-24 23:44:34 +00:00
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
html, body {
height: 100%;
margin: 0;
}
#tinymce_parent {
display: block;
height: 100%;
min-height: 130px;
}
#noScriptWarning {
padding: 10px 8px 4px;
font-family: sans-serif;
font-size: 12px;
}
</style>
<script type="text/javascript" src="tinymce.js"></script>
<script type="text/javascript" src="locale.js"></script>
2008-09-24 23:44:34 +00:00
<script type="text/javascript">
tinyMCE.init({
content_css: "css/integration-content.css",
toolbar: "bold italic underline | sub sup | removeformat",
toolbar_items_size: 'small',
menubar: false,
resize: false,
statusbar: false,
2013-03-31 20:25:13 -04:00
init_instance_callback: function (ed) {
setLocale(ed);
zoteroInit(ed);
2013-03-31 20:25:13 -04:00
}
2008-09-24 23:44:34 +00:00
});
tinyMCE.execCommand("mceAddEditor", true, "tinymce");
2008-09-24 23:44:34 +00:00
</script>
</head>
<body>
<div id="tinymce"></div>
2008-09-24 23:44:34 +00:00
</body>
</html>