Skip to content

Commit

Permalink
Update funcs.js
Browse files Browse the repository at this point in the history
Fix icon path
  • Loading branch information
zyspec authored Nov 16, 2017
1 parent 9a1ad84 commit f6a1f8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/funcs.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ function toggle(id) {
}

var iconClose = new Image();
iconClose.src = '../assets/images/links/close12.gif';
iconClose.src = './assets/images/links/close12.gif';
var iconOpen = new Image();
iconOpen.src = '../assets/images/links/open12.gif';
iconOpen.src = './assets/images/links/open12.gif';

function toggleIcon(iconName) {
if (document.images[iconName].src == window.iconOpen.src) {
Expand Down

0 comments on commit f6a1f8d

Please sign in to comment.