mirror of
https://github.com/rembo10/headphones.git
synced 2026-05-14 23:59:30 +01:00
New images
This commit is contained in:
BIN
data/images/get.png
Normal file
BIN
data/images/get.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.4 KiB |
BIN
data/images/header.png
Normal file
BIN
data/images/header.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
BIN
data/images/nav-link-selected.png
Normal file
BIN
data/images/nav-link-selected.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
BIN
data/images/subhead.png
Normal file
BIN
data/images/subhead.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
8
data/js/ActiveLinks.js
Normal file
8
data/js/ActiveLinks.js
Normal file
@@ -0,0 +1,8 @@
|
||||
$(document).ready(function () {
|
||||
$("#nav li a").each(function () {
|
||||
var hreflink = $(this).attr("href");
|
||||
if (hreflink == location.href.split("/").pop()) {
|
||||
$(this).parent().addClass("selected");
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user