Mercurial > lada > lada-client
changeset 363:3bed0373cf50
Fixed display of lock and unlock items.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Thu, 15 Aug 2013 16:58:38 +0200 |
parents | 6a7a9267e00f |
children | d0f5be50aed5 |
files | app/view/proben/List.js gfx/lock_16x16.png gfx/unlock_16x16.png |
diffstat | 3 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/app/view/proben/List.js Thu Aug 15 14:07:35 2013 +0200 +++ b/app/view/proben/List.js Thu Aug 15 16:58:38 2013 +0200 @@ -69,8 +69,8 @@ */ function render_readonly (value) { if (value) { - return '🔒' + return '<img src="gfx/lock_16x16.png"/>'; } else { - return '🔓' + return '<img src="gfx/unlock_16x16.png"/>'; } }