mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
13275: updated web-client to use tinymce v3 13276: overlay display fix for when field has large content git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13585 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
20 lines
563 B
HTML
Executable File
20 lines
563 B
HTML
Executable File
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<script language="javascript" src="../../tiny_mce_popup.js"></script>
|
|
<script type="text/javascript" src="jscripts/embed.js"></script>
|
|
<script type="text/javascript">
|
|
tinyMCEPopup.onInit.add(function(ed) {
|
|
var dom = tinyMCEPopup.dom;
|
|
|
|
dom.setHTML('content', ed.getContent());
|
|
});
|
|
|
|
document.write('<base href="' + tinyMCEPopup.getWindowArg("base") + '">');
|
|
</script>
|
|
<title>{#preview.preview_desc}</title>
|
|
</head>
|
|
<body id="content">
|
|
<!-- Gets filled with editor contents -->
|
|
</body>
|
|
</html>
|