Ignore:
Timestamp:
2015-05-17T11:17:31+12:00 (9 years ago)
Author:
davidb
Message:

Working popup editor, saving to localStorage. Tidy up on space-bar for global pause and start play.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-sites-dev/respooled/collect/popup-video-respooled/transform/pages/document.xsl

    r29885 r29888  
    13991399     </div>
    14001400
     1401         <div id="delete-recording-popup" title="Delete Tracks">
     1402       <p>Are you sure you want to delete the selected tracks?</p>
     1403     </div>
     1404
     1405
     1406         <div id="edit-recording-popup" title="Edit Tracks">
     1407       <style>
     1408         #trackEditor {
     1409           position: absolute;
     1410           top: 0; right: 0; bottom: 0; left: 0;
     1411         }
     1412       </style>
     1413       <div id="trackEditor"><xsl:comment>Track Editor Area</xsl:comment></div>
     1414     </div>
     1415
     1416
     1417
    14011418          <div style="color: white;">
    14021419
     
    14831500
    14841501
    1485         <form id="pamForm" style="width: 99%; margin-top: 10px; margin-bottom: 10px; ">
     1502        <form id="palForm" style="width: 99%; margin-top: 10px; margin-bottom: 10px; ">
    14861503          <fieldset>
    1487         <legend id="pam-legend">Play Along Layers: Game On!</legend>
    1488         <input type="checkbox" name="PianoHero" value="PianoHero" />Piano Hero<br />
    1489         <input type="checkbox" name="DrumHero"  value="DrumHero" />Drum-beat Hero<br />
     1504        <legend id="pal-legend">Play Along Layers: Game On!</legend>
     1505        <div id="palList"><xsl:comment>play along list</xsl:comment></div>
    14901506       
    14911507        <div style="padding: 8px;">
    1492           <button id="pam-display-overlay" style="background-color:#2E52A4; color:#CCC; width:19%; text-align: center; margin-right: 8px;">
     1508          <button id="pal-display-overlay"
     1509              style="background-color:#2E52A4; color:#CCC; width:19%; text-align: center; margin-right: 2px;"
     1510              onclick="return palDisplay()">
    14931511            Display Selected
    14941512          </button>
    1495           <button id="pam-merge-overlay"   style="background-color:#2E52A4; color:#CCC; width:19%; text-align: center; margin-right: 8px;">
     1513          <button id="pal-merge-overlay"   
     1514              style="background-color:#2E52A4; color:#CCC; width:19%; text-align: center; margin-right: 2px;">
    14961515            Merge Selected
    14971516          </button>
    1498           <button id="pam-split-overlay"   style="background-color:#2E52A4; color:#CCC; width:19%; text-align: center; margin-right: 8px;">
     1517          <button id="pal-split-overlay"   
     1518              style="background-color:#2E52A4; color:#CCC; width:19%; text-align: center; margin-right: 2px;">
    14991519            Split Selected
    15001520          </button>
    1501           <button id="pam-edit-overlay"    style="background-color:#2E52A4; color:#CCC; width:19%; text-align: center; margin-right: 8px;">
     1521          <button id="pal-edit-overlay"   
     1522              style="background-color:#2E52A4; color:#CCC; width:19%; text-align: center; margin-right: 2px;"
     1523              onclick="return palEdit()">
    15021524          Edit Selected
    15031525          </button>
    1504           <button id="pam-delete-overlay" 
     1526          <button id="pal-delete-overlay" 
    15051527              style="background-color:#2E52A4; color:#CCC; width:19%; text-align: center;"
    1506               onclick="return pamDelete()">
     1528              onclick="return palDelete()">
    15071529          Delete Selected
    15081530          </button>
Note: See TracChangeset for help on using the changeset viewer.