Merge pull request #4 from 45Drives/dev-josh

italicize symlink filenames
This commit is contained in:
Josh Boudreau 2021-05-28 15:33:20 -03:00 committed by GitHub
commit e079be7110
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -419,6 +419,7 @@ class NavFileLink extends NavFile{
this.dom_element.nav_item_icon.appendChild(link_icon);
this.double_click = false;
this.link_target = link_target;
this.dom_element.nav_item_title.style.fontStyle = "italic";
}
show_properties() {
@ -650,6 +651,7 @@ class NavDirLink extends NavDir{
this.dom_element.nav_item_icon.appendChild(link_icon);
this.double_click = false;
this.link_target = link_target;
this.dom_element.nav_item_title.style.fontStyle = "italic";
}
async rm() {