Compare commits

...

2 Commits

3 changed files with 7 additions and 1 deletions

View File

@ -12,6 +12,11 @@ a, a:link, a:visited, a:active {
color: #22dd22; color: #22dd22;
} }
.link {
cursor: pointer;
color: #22dd22;
}
.header { .header {
font-size: 24pt; font-size: 24pt;
font-weight: bold; font-weight: bold;

View File

@ -22,7 +22,7 @@ if ( $_SESSION['sortorder'] == SORTBYNAME ) {
?> ?>
</div> </div>
<div class='header' id='header'>&nbsp;</div> <div class='header' id='header'>&nbsp;</div>
<div id="path" class='name'></div> <div id="path" class='name link'></div>
<div id="list" class='list'> <div id="list" class='list'>
<!-- <div class='listcontainer'> --> <!-- <div class='listcontainer'> -->
<!-- </div> --> <!-- </div> -->

View File

@ -36,6 +36,7 @@ function updatePathNavigator() {
} }
function changeFolder(name, path) { function changeFolder(name, path) {
if ( path == curpath ) return;
toastr.success("Opening comic \"" + name + "\"<br>If this is the first time it may take a while to generate thumbnails."); toastr.success("Opening comic \"" + name + "\"<br>If this is the first time it may take a while to generate thumbnails.");
$.ajax({ $.ajax({
url : 'ajax/setpath.php', url : 'ajax/setpath.php',