Reorg the note fields and add recording link field
Add LBC
This commit is contained in:
parent
d26874d88b
commit
8315970571
@ -34,7 +34,7 @@
|
||||
<div style='display:inline-block'>
|
||||
<button onclick='increaseFont()'><i class='fa fa-plus'></i></button>
|
||||
<button onclick='decreaseFont()'><i class='fa fa-minus'></i></button>
|
||||
<button onclick='openRef(false)'><i class='fa fa-book'></i></button>
|
||||
<button id='openRefBtn' class='button' onclick='openRef(false)'><i class='fa fa-book'></i></button>
|
||||
</div>
|
||||
<div id="ref" style='font-size:12pt;'></div>
|
||||
<div id='note-list'>
|
||||
@ -80,7 +80,10 @@
|
||||
<div id='fields-container'>
|
||||
<input type="hidden" id="noteId" value="" />
|
||||
<input type="text" id="noteTitle" placeholder="Title..." />
|
||||
<input type='text' id='noteDate' onchange='textDirty=true;saved=false;' />
|
||||
<input type='text' id='noteDate' placeholder='Date...' onchange='textDirty=true;saved=false;' />
|
||||
<input type='text' id='passage' placeholder='Passage...' onchange='saved=false;textDirty=true;' />
|
||||
<br />
|
||||
<input type='text' id='recording' name='recording' placeholder='Recording link...' />
|
||||
<input type='text' id='newSpeaker' placeholder='Name...' onkeyup='saveSpeaker(event)' style='display:none;' />
|
||||
<select id="speaker" onchange='newSpeaker()'>
|
||||
<option value=0>-- Speaker --</option>
|
||||
@ -97,7 +100,6 @@
|
||||
<option value='{{ s.id }}'>{{ s.name }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<input type='text' id='passage' placeholder='Passage...' onchange='saved=false;textDirty=true;' />
|
||||
</div>
|
||||
|
||||
<textarea id="notes" wrap="hard"></textarea>
|
||||
@ -121,6 +123,8 @@
|
||||
<option value='wcf'>Westminster Confession of Faith</option>
|
||||
<option value='wsc'>Westminster Shorter Catechism</option>
|
||||
<option value='wlc'>Westminster Larger Catechism</option>
|
||||
<option value='lbc'>London Baptist Confession</option>
|
||||
<option value='note'>Note</option>
|
||||
</select>
|
||||
<select id='referenceBook' onchange='filterBooks()'>
|
||||
</select>
|
||||
|
Loading…
Reference in New Issue
Block a user