Blame view

js/_tiny_mce/plugins/paste/blank.htm 477 Bytes
42868d70   andryeyev   Создал GIT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <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 language="javascript">
  		function init() {
  			document.body.contentEditable = true;
  			document.designMode = 'on';
  			parent.initIframe(document);
  			window.focus();
  		}
  	</script>
  	<link href="css/blank.css" rel="stylesheet" type="text/css" />
  	<base target="_self" />
  </head>
  <body onload="init();">
  
  </body>
  </html>