RandomSec/main/webapp/modules/core/scripts/project/history-panel.html

29 lines
1.4 KiB
HTML
Raw Normal View History

<div class="history-panel-controls" bind="controlsDiv">
<a class="button" href="javascript:{}" bind="extractLink">extract...</a>
<a class="button" href="javascript:{}" bind="applyLink">apply...</a>
</div>
<div class="history-panel-help" bind="helpDiv">
<h1>Infinite undo history</h1>
<p>Don't worry about making mistakes. Every change you make will be shown here, and you can undo your changes anytime.</p>
<p><a href="http://code.google.com/p/google-refine/wiki/GettingStarted?tm=6" target="_blank"><b>Learn more &raquo;</b></a></p>
</div>
<div class="history-panel-body-controls" bind="bodyControlsDiv">Quick filter:
<input bind="filterInput" />
</div>
<div class="history-panel-body" bind="bodyDiv">
<div class="history-past" bind="pastDiv">
<div class="history-panel-message" bind="createProjectDiv">
<span class="history-entry-index">0.</span>
Create Project
</div>
<div class="history-panel-message" bind="noUndoDiv" style="display:none;">No change to undo</div>
<div class="history-highlight" bind="pastHighlightDiv"></div>
</div>
<div class="history-now" bind="nowDiv">done upto here</div>
<div class="history-future" bind="futureDiv">
<div class="history-panel-message" bind="noRedoDiv" style="display:none;">No change to redo</div>
<div class="history-highlight" bind="futureHighlightDiv"></div>
</div>
</div>'