You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.4 KiB
38 lines
1.4 KiB
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> |
|
<title>Editor Back/Forward Button Test</title> |
|
|
|
<script type="text/javascript" src="../boilerplate.js"></script> |
|
|
|
<script type="text/javascript"> |
|
require([ |
|
"dojo/parser", |
|
"dijit/Editor", |
|
"dojo/domReady!" |
|
], function(parser){ |
|
parser.parse(); |
|
}); |
|
</script> |
|
</head> |
|
|
|
<body class="claro" role="main"> |
|
<h1>Editor back/forward button value restore tests</h1> |
|
<p> |
|
Try typing something into the editors below, and then click the page refrsh link or the back then forward buttons. |
|
The editor should not lose the value. |
|
</p> |
|
<p>Notes:</p> |
|
<ol> |
|
<li>Editor must have a "name" attribute for this to work (not sure why) |
|
<li>If in XD mode must set dojo.config.allowXdRichTextSave or manually create the hidden |
|
<textarea> node used to preserve the data. |
|
</ol> |
|
<p><a href="BackForwardStateHelper.html" id="away">Navigate to another page</a></p> |
|
|
|
<div id="editor0" data-dojo-type="dijit/Editor" aria-label="editor0" data-dojo-props='name:"editor0", height:"100", plugins:[]'>editor0 original contents</div> |
|
<div id="editor1" data-dojo-type="dijit/Editor" aria-label="editor1" data-dojo-props='name:"editor1", height:"100", plugins:[]'>editor1 original contents</div> |
|
<textarea id="dijit._editor.RichText.value" style="display:none;position:absolute;top:-100px;left:-100px;height:3px;width:3px;overflow:hidden;"></textarea> |
|
</body> |
|
</html>
|
|
|