Files
mythoughts/masks/read.html
2019-09-04 23:20:55 +02:00

13 lines
322 B
HTML
Executable File

<div id="read"></div>
<script type="text/javascript">
oMyThoughts.pageInit = function(asHash, bFirstPage) {
oEditor = new Editor('#read', true);
oEditor.open(asHash.items[0]);
};
oMyThoughts.onSamePageMove = function(asHash) {
$('#read').empty();
self.pageInit(self.getHash());
return false;
};
</script>