File: export-project-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 (21 lines) | stat: -rw-r--r-- 1,121 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="dialog-frame" style="width: 500px;">
  <div class="dialog-header" bind="dialogHeader"></div>
  <div class="dialog-body" bind="dialogBody">
      
    <div id="choose-export-destination" ><div class="grid-layout grid-layout-for-ui layout-loose layout-full"><table role="presentation">
        <tr>
          <td width="60%"><div class="grid-layout grid-layout-for-text layout-tightest"><table role="presentation">
            <tr><td width="1%"><input type="radio" name="export-destination" value="local" checked id="$export-to-local" /></td>
              <td><label for="$export-to-local" bind="toLocalRadio"></label></td></tr>
            <tr><td width="1%"><input type="radio" name="export-destination" value="google" id="$export-to-google-drive" /></td>
              <td><label for="$export-to-google-drive" bind="toGoogleDriveRadio"></label></td></tr>
          </table></div></td>
    </table></div>
   </div>
  
  <div class="dialog-footer" bind="dialogFooter">
    <button class="button" bind="exportButton"></button>
    <button class="button" bind="cancelButton"></button>
  </div>
  </div>
</div>