Skip to content
Snippets Groups Projects
Commit d39692cf authored by Sergiu Dumitriu's avatar Sergiu Dumitriu
Browse files

[misc] Fixed broken code

parent 0dd6390c
No related branches found
No related tags found
No related merge requests found
......@@ -107,10 +107,10 @@
}
var deleteLink = new Element('a', {
href : row.deleteUrl,
title : "$escapetool.javascript($services.localization.render('platform.core.profile.watchlist.unwatch'))"
title : '$escapetool.javascript($services.localization.render('platform.core.profile.watchlist.unwatch'))'
});
deleteLink.insert(new Element('img', {
'src' : "${xwiki.getSkinFile('icons/silk/cross.png')}"
'src' : '${xwiki.getSkinFile('icons/silk/cross.png')}'
}));
deleteLink.observe('click', function(event) {
Event.stop(event);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment