0.0.67
This commit is contained in:
parent
5e7f2d9c20
commit
515f0a12d2
18
index.html
18
index.html
@ -420,7 +420,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<div class="flex direction-column align-center">
|
<div class="flex direction-column align-center">
|
||||||
<h3 id="person_initials"></h3>
|
<h3 id="person_initials"></h3>
|
||||||
<h4 class="capitalize" id="show_person_name"></h4>
|
<h4 class="capitalize" id="show_person_name" ondblclick="setNameEditable()"></h4>
|
||||||
<div class="flex space-between align-center">
|
<div class="flex space-between align-center">
|
||||||
<svg tooltip="Edit" id="edit_person_name" class="icon" onclick="setNameEditable()" viewBox="0 0 64 64">
|
<svg tooltip="Edit" id="edit_person_name" class="icon" onclick="setNameEditable()" viewBox="0 0 64 64">
|
||||||
<path
|
<path
|
||||||
@ -428,8 +428,8 @@
|
|||||||
</svg>
|
</svg>
|
||||||
<svg id="delete_person" onclick="deletePerson()" class="icon" viewBox="0 0 64 64" title="Remove">
|
<svg id="delete_person" onclick="deletePerson()" class="icon" viewBox="0 0 64 64" title="Remove">
|
||||||
<title>remove</title>
|
<title>remove</title>
|
||||||
<line x1="4" y1="2.5" x2="60" y2="2.5"/>
|
<line x1="28" y1="0" x2="36" y2="0"/>
|
||||||
<line x1="33.92" y1="0.5" x2="30.08" y2="0.5"/>
|
<line x1="4" y1="4" x2="60" y2="4"/>
|
||||||
<path d="M53.5,17.5V59.42a4.08,4.08,0,0,1-4.08,4.08H14.58a4.08,4.08,0,0,1-4.08-4.08V17.5"/>
|
<path d="M53.5,17.5V59.42a4.08,4.08,0,0,1-4.08,4.08H14.58a4.08,4.08,0,0,1-4.08-4.08V17.5"/>
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
@ -2464,11 +2464,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function setNameEditable() {
|
function setNameEditable() {
|
||||||
showPersonName.contentEditable = 'true'
|
if(!showPersonName.isContentEditable){
|
||||||
showPersonName.focus()
|
showPersonName.contentEditable = 'true'
|
||||||
document.execCommand('selectAll', false, null);
|
showPersonName.focus()
|
||||||
document.getSelection().collapseToEnd();
|
document.execCommand('selectAll', false, null);
|
||||||
personName = showPersonName.textContent
|
document.getSelection().collapseToEnd();
|
||||||
|
personName = showPersonName.textContent
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function changePersonName() {
|
async function changePersonName() {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user