Skip to content
Snippets Groups Projects
Commit 1d88ab57 authored by Robin Appelman's avatar Robin Appelman
Browse files

dont open the album when clicking the remove/rename button

parent 41817db2
Branches
No related tags found
No related merge requests found
......@@ -50,10 +50,12 @@ Albums={
local.attr('data-album',a.name);
$(".gallery_album_decoration a.rename", local).bind('click', {name: a.name},function(event){
event.preventDefault();
event.stopPropagation();
galleryRename(event.data.name);
});
$(".gallery_album_decoration a.remove", local).bind('click', {name: a.name},function(event){
event.preventDefault();
event.stopPropagation();
galleryRemove(event.data.name);
});
// $("a.view", local).attr('href','?view='+decodeURIComponent(escape(a.name)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment