21 lines
678 B
Plaintext
21 lines
678 B
Plaintext
<div id="wiki-wrapper" class="edit">
|
|
<div id="head">
|
|
<h1>Editing <strong>{{title}}</strong></h1>
|
|
<ul class="actions">
|
|
<li class="minibutton"><a href="/{{escaped_name}}"
|
|
class="action-view-page">View Page</a></li>
|
|
<li class="minibutton"><a href="/history/{{escaped_name}}"
|
|
class="action-page-history">Page History</a></li>
|
|
</ul>
|
|
</div>
|
|
<div id="wiki-content">{{>editor}}</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
window.onbeforeunload = function(){ return "Leaving will discard all edits!" };
|
|
$("#gollum-editor-submit").click( function() { window.onbeforeunload = null; } );
|
|
|
|
jQuery(document).ready(function() {
|
|
$.GollumEditor();
|
|
});
|
|
</script>
|