fix icon paths

This commit is contained in:
hummypkg 2016-05-05 17:39:59 +00:00
parent 885db239e7
commit 5db080604d
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
Package: sweeper
Priority: optional
Section: misc
Version: 2.1.0
Version: 2.1.0-1
Architecture: mipsel
Maintainer: af123@hummypkg.org.uk
Depends: webif(>=1.3.0-1)

View File

@ -236,7 +236,7 @@ function composite_criterion(c, data)
' ' +
'<a class=delsubclause href=# ' +
'title="Delete sub-clause and the conditions within it">' +
'<img src=/img/context/delete.png></a>' +
'<img src=img/delete.png></a>' +
'&nbsp;' +
c.desc +
'</td></tr>';
@ -277,13 +277,13 @@ function criterion(data, classes)
s += '</td><td>';
if (c.type != 'noarg')
s += '<a class=editclause href=# title="Edit condition">' +
'<img src=/img/context/edit.png></a>' +
'<img src=img/edit.png></a>' +
'&nbsp;';
else
s += '<img src=/img/blank.gif width=16>' +
'&nbsp;';
s += '<a class=delclause href=# title="Delete condition">' +
'<img src=/img/context/delete.png></a>' +
'<img src=img/delete.png></a>' +
'</td></tr>';
return s;
}
@ -307,7 +307,7 @@ function action(data)
'<th class=cmd cmd=' + data.cmd + '>' + c.desc + '</th>' +
'<td class=val>' + data.arg + '</td>' +
'<td><a class=editaction href=#>' +
'<img src=/img/context/edit.png></a></td>' +
'<img src=img/edit.png></a></td>' +
'</tr>';
if (data.cmd != 'continue')