File: apply-operations-dialog.html

package info (click to toggle)
openrefine 3.9.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,440 kB
  • sloc: javascript: 106,758; java: 91,946; xml: 6,634; sh: 614; makefile: 78; python: 71; sql: 59
file content (15 lines) | stat: -rw-r--r-- 865 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="dialog-frame" style="min-width: 800px;">
  <div class="dialog-border">
    <div class="dialog-header" bind="dialogHeader"></div>
    <div class="dialog-body" bind="dialogBody">
      <div class="dialog-instruction"><label for="textareaId" bind="or_proj_pasteJson"></label></div>
      <input type="file" id="file-input" bind="operationJsonButton" style="margin-bottom: 8px;"/>
      <div class="input-container"><textarea spellcheck="false" wrap="off" bind="textarea" id="textareaId" class="history-operation-json" style="min-width: 764px"></textarea></div>
      <div class="history-operation-json-error" bind="errorContainer"></div>
    </div>
    <div class="dialog-footer" bind="dialogFooter">
    <button class="button button-primary" bind="applyButton"></button>
    <button class="button" bind="cancelButton"></button>
    </div>
  </div>
</div>