includes/clientside/tinymce/plugins/template/blank.htm
author Dan
Sun, 23 Sep 2007 18:42:16 -0400
changeset 140 40f7fa5fd061
parent 1 fe660c52c48f
permissions -rw-r--r--
Revamped the administrator's user CP, big time. The admin module now uses a smart form and enables all profile fields, including users_extra, to be changed. Passwords are encrypted when sent. The whole CP has been split off into a different file to accomodate the large amount of code.

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>blank_page</title>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	<script type="text/javascript">
		var tinyMCE = parent.tinyMCE, css = tinyMCE.getParam("content_css").split(','), i, u;

		// Load content CSS files
		for (i=0; i<css.length; i++) {
			u = css[i];

			// Fix relative
			if (u.charAt(0) != '/' && u.indexOf('://') == -1)
				u = tinyMCE.documentBasePath + "/" + u;

			document.write('<link href="' + u + '" rel="stylesheet" type="text/css" />');
		}
	</script>
</head>
<body id="mceTemplatePreview">

</body>
</html>